e6data-python-connector 2.2.2__py3-none-any.whl → 2.2.3rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- e6data_python_connector/e6data_grpc.py +9 -6
- e6data_python_connector/server/e6x_engine_pb2.py +87 -86
- e6data_python_connector/server/e6x_engine_pb2.pyi +63 -59
- e6data_python_connector/server/e6x_engine_pb2_grpc.py +432 -116
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/METADATA +2 -2
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/RECORD +10 -10
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/LICENSE +0 -0
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/WHEEL +0 -0
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/entry_points.txt +0 -0
- {e6data_python_connector-2.2.2.dist-info → e6data_python_connector-2.2.3rc1.dist-info}/top_level.txt +0 -0
|
@@ -71,12 +71,8 @@ def re_auth(func):
|
|
|
71
71
|
try:
|
|
72
72
|
return func(self, *args, **kwargs)
|
|
73
73
|
except _InactiveRpcError as e:
|
|
74
|
-
print(f'RE_AUTH: Function Name: {func}')
|
|
75
|
-
print(f'RE_AUTH: Error Found {e}')
|
|
76
74
|
if e.code() == grpc.StatusCode.INTERNAL and 'Access denied' in e.details():
|
|
77
|
-
print('RE_AUTH: Initialising re-authentication.')
|
|
78
75
|
self.connection.get_re_authenticate_session_id()
|
|
79
|
-
print(f'RE_AUTH: Re-auth successful.')
|
|
80
76
|
return func(self, *args, **kwargs)
|
|
81
77
|
else:
|
|
82
78
|
raise e
|
|
@@ -192,6 +188,7 @@ class Connection(object):
|
|
|
192
188
|
self._max_receive_message_length = -1
|
|
193
189
|
self._max_send_message_length = 300 * 1024 * 1024 # mb
|
|
194
190
|
self.grpc_prepare_timeout = 10 * 60 # 10 minutes
|
|
191
|
+
self._planner_ip = None
|
|
195
192
|
|
|
196
193
|
if isinstance(grpc_options, dict):
|
|
197
194
|
self._keepalive_timeout_ms = grpc_options.get('keepalive_timeout_ms') or self._keepalive_timeout_ms
|
|
@@ -224,7 +221,8 @@ class Connection(object):
|
|
|
224
221
|
self._client = e6x_engine_pb2_grpc.QueryEngineServiceStub(self._channel)
|
|
225
222
|
|
|
226
223
|
def get_re_authenticate_session_id(self):
|
|
227
|
-
self.
|
|
224
|
+
self.close()
|
|
225
|
+
self._create_client()
|
|
228
226
|
return self.get_session_id
|
|
229
227
|
|
|
230
228
|
@property
|
|
@@ -243,6 +241,7 @@ class Connection(object):
|
|
|
243
241
|
metadata=_get_grpc_header(cluster=self.cluster_uuid)
|
|
244
242
|
)
|
|
245
243
|
self._session_id = authenticate_response.sessionId
|
|
244
|
+
self._planner_ip = authenticate_response.plannerIp
|
|
246
245
|
if not self._session_id:
|
|
247
246
|
raise ValueError("Invalid credentials.")
|
|
248
247
|
except _InactiveRpcError as e:
|
|
@@ -266,6 +265,7 @@ class Connection(object):
|
|
|
266
265
|
metadata=_get_grpc_header(cluster=self.cluster_uuid)
|
|
267
266
|
)
|
|
268
267
|
self._session_id = authenticate_response.sessionId
|
|
268
|
+
self._planner_ip = authenticate_response.plannerIp
|
|
269
269
|
else:
|
|
270
270
|
raise e
|
|
271
271
|
else:
|
|
@@ -423,6 +423,8 @@ class Cursor(DBAPICursor):
|
|
|
423
423
|
|
|
424
424
|
@property
|
|
425
425
|
def metadata(self):
|
|
426
|
+
if not self._engine_ip:
|
|
427
|
+
self._engine_ip = self.connection._planner_ip
|
|
426
428
|
return _get_grpc_header(engine_ip=self._engine_ip, cluster=self.connection.cluster_uuid)
|
|
427
429
|
|
|
428
430
|
@property
|
|
@@ -568,7 +570,8 @@ class Cursor(DBAPICursor):
|
|
|
568
570
|
sessionId=self.connection.get_session_id,
|
|
569
571
|
schema=self._database,
|
|
570
572
|
catalog=self._catalog_name,
|
|
571
|
-
queryString=sql
|
|
573
|
+
queryString=sql,
|
|
574
|
+
plannerIp=self._engine_ip
|
|
572
575
|
)
|
|
573
576
|
prepare_statement_response = client.prepareStatementV2(
|
|
574
577
|
prepare_statement_request,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: e6x_engine.proto
|
|
4
|
+
# Protobuf Python Version: 5.26.1
|
|
4
5
|
"""Generated protocol buffer code."""
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -13,14 +14,14 @@ _sym_db = _symbol_database.Default()
|
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
16
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x65\x36x_engine.proto\"2\n\nGFieldInfo\x12\x11\n\tfieldName\x18\x01 \x01(\t\x12\x11\n\tfieldType\x18\x02 \x01(\t\"A\n\x13\x46\x61iledSchemaElement\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x0e\n\x06reason\x18\x03 \x01(\t\"P\n\x16GetAddCatalogsResponse\x12\x0e\n\x06status\x18\x01 \x01(\t\x12&\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x14.FailedSchemaElement\"2\n\x0f\x43\x61talogResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tisDefault\x18\x02 \x01(\x08\"<\n\x0eParameterValue\x12\r\n\x05index\x18\x01 \x01(\x11\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\r\n\x05value\x18\x03 \x01(\t\"D\n\x0c\x43learRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\x0f\n\rClearResponse\"J\n\x12\x43\x61ncelQueryRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\x15\n\x13\x43\x61ncelQueryResponse\"F\n\x0e\x45xplainRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\"\n\x0f\x45xplainResponse\x12\x0f\n\x07\x65xplain\x18\x01 \x01(\t\"Y\n\rDryRunRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x13\n\x0bqueryString\x18\x04 \x01(\t\"%\n\x0e\x44ryRunResponse\x12\x13\n\x0b\x64ryrunValue\x18\x01 \x01(\t\"l\n\x0f\x44ryRunRequestV2\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x13\n\x0bqueryString\x18\x04 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x05 \x01(\t\"M\n\x15\x45xplainAnalyzeRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"m\n\x16\x45xplainAnalyzeResponse\x12\x16\n\x0e\x65xplainAnalyze\x18\x01 \x01(\t\x12\x10\n\x08isCached\x18\x02 \x01(\x08\x12\x13\n\x0bparsingTime\x18\x03 \x01(\x12\x12\x14\n\x0cqueueingTime\x18\x04 \x01(\x12\"b\n\x17PrepareStatementRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x13\n\x0bqueryString\x18\x03 \x01(\t\x12\x0f\n\x07quoting\x18\x04 \x01(\t\"
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x65\x36x_engine.proto\"2\n\nGFieldInfo\x12\x11\n\tfieldName\x18\x01 \x01(\t\x12\x11\n\tfieldType\x18\x02 \x01(\t\"A\n\x13\x46\x61iledSchemaElement\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x0e\n\x06reason\x18\x03 \x01(\t\"P\n\x16GetAddCatalogsResponse\x12\x0e\n\x06status\x18\x01 \x01(\t\x12&\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x14.FailedSchemaElement\"2\n\x0f\x43\x61talogResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tisDefault\x18\x02 \x01(\x08\"<\n\x0eParameterValue\x12\r\n\x05index\x18\x01 \x01(\x11\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\r\n\x05value\x18\x03 \x01(\t\"D\n\x0c\x43learRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\x0f\n\rClearResponse\"J\n\x12\x43\x61ncelQueryRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\x15\n\x13\x43\x61ncelQueryResponse\"F\n\x0e\x45xplainRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\"\n\x0f\x45xplainResponse\x12\x0f\n\x07\x65xplain\x18\x01 \x01(\t\"Y\n\rDryRunRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x13\n\x0bqueryString\x18\x04 \x01(\t\"%\n\x0e\x44ryRunResponse\x12\x13\n\x0b\x64ryrunValue\x18\x01 \x01(\t\"l\n\x0f\x44ryRunRequestV2\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x13\n\x0bqueryString\x18\x04 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x05 \x01(\t\"M\n\x15\x45xplainAnalyzeRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"m\n\x16\x45xplainAnalyzeResponse\x12\x16\n\x0e\x65xplainAnalyze\x18\x01 \x01(\t\x12\x10\n\x08isCached\x18\x02 \x01(\x08\x12\x13\n\x0bparsingTime\x18\x03 \x01(\x12\x12\x14\n\x0cqueueingTime\x18\x04 \x01(\x12\"b\n\x17PrepareStatementRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x13\n\x0bqueryString\x18\x03 \x01(\t\x12\x0f\n\x07quoting\x18\x04 \x01(\t\"\x9b\x01\n\x19PrepareStatementV2Request\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x03 \x01(\t\x12\x13\n\x0bqueryString\x18\x04 \x01(\t\x12\x0f\n\x07quoting\x18\x05 \x01(\t\x12\x16\n\tplannerIp\x18\x06 \x01(\tH\x00\x88\x01\x01\x42\x0c\n\n_plannerIp\"=\n\x18PrepareStatementResponse\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x0f\n\x07queryId\x18\x02 \x01(\t\"@\n\x0eUserAccessInfo\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\x10\n\x08userName\x18\x02 \x01(\t\x12\x0e\n\x06tokens\x18\x03 \x03(\t\"g\n\x17\x45xecuteStatementRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\x12\x16\n\x0eshouldNotCache\x18\x04 \x01(\x08\"\x8a\x01\n\x19\x45xecuteStatementV2Request\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\x12\x16\n\x0eshouldNotCache\x18\x04 \x01(\x08\x12\x1f\n\x06params\x18\x05 \x03(\x0b\x32\x0f.ParameterValue\"\x1a\n\x18\x45xecuteStatementResponse\"O\n\x17GetNextResultRowRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"-\n\x18GetNextResultRowResponse\x12\x11\n\tresultRow\x18\x02 \x01(\x0c\"w\n\x19GetNextResultBatchRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\x12\x16\n\tasRowData\x18\x04 \x01(\x08H\x00\x88\x01\x01\x42\x0c\n\n_asRowData\"1\n\x1aGetNextResultBatchResponse\x12\x13\n\x0bresultBatch\x18\x02 \x01(\x0c\"P\n\x18GetResultMetadataRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"3\n\x19GetResultMetadataResponse\x12\x16\n\x0eresultMetaData\x18\x01 \x01(\x0c\"5\n\x13\x41uthenticateRequest\x12\x0c\n\x04user\x18\x01 \x01(\t\x12\x10\n\x08password\x18\x02 \x01(\t\"<\n\x14\x41uthenticateResponse\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x11\n\tplannerIp\x18\x02 \x01(\t\"5\n\x10GetTablesRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\"H\n\x12GetTablesV2Request\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x03 \x01(\t\"#\n\x11GetTablesResponse\x12\x0e\n\x06tables\x18\x01 \x03(\t\"*\n\x15GetSchemaNamesRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\"=\n\x17GetSchemaNamesV2Request\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x02 \x01(\t\")\n\x16GetSchemaNamesResponse\x12\x0f\n\x07schemas\x18\x01 \x03(\t\"E\n\x11GetColumnsRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\r\n\x05table\x18\x03 \x01(\t\"X\n\x13GetColumnsV2Request\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\r\n\x05table\x18\x03 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x04 \x01(\t\"4\n\x12GetColumnsResponse\x12\x1e\n\tfieldInfo\x18\x01 \x03(\x0b\x32\x0b.GFieldInfo\"E\n\rStatusRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"2\n\x0eStatusResponse\x12\x0e\n\x06status\x18\x02 \x01(\x08\x12\x10\n\x08rowCount\x18\x03 \x01(\x12\"5\n\x12\x41\x64\x64\x43\x61talogsRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\x0c\n\x04json\x18\x02 \x01(\t\"#\n\x12UpdateUsersRequest\x12\r\n\x05users\x18\x01 \x01(\x0c\"\x15\n\x13UpdateUsersResponse\"3\n\x0fSetPropsRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\x12\r\n\x05props\x18\x02 \x01(\t\"\x12\n\x10SetPropsResponse\"*\n\x15GetAddCatalogsRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\"\x15\n\x13\x41\x64\x64\x43\x61talogsResponse\"\x15\n\x13GetCatalogesRequest\"B\n\x14GetCatalogesResponse\x12*\n\x10\x63\x61talogResponses\x18\x01 \x03(\x0b\x32\x10.CatalogResponse\"+\n\x16RefreshCatalogsRequest\x12\x11\n\tsessionId\x18\x01 \x01(\t\"\x19\n\x17RefreshCatalogsResponse\"X\n\x12RemoteChunkRequest\x12\x17\n\x0foriginalQueryId\x18\x01 \x01(\t\x12\x15\n\rremoteQueryId\x18\x02 \x01(\t\x12\x12\n\nsQueryHash\x18\x03 \x01(\t\"3\n\x13RemoteChunkResponse\x12\r\n\x05\x65rror\x18\x01 \x01(\t\x12\r\n\x05\x63hunk\x18\x02 \x01(\x0c\"Q\n\x19\x43learOrCancelQueryRequest\x12\x10\n\x08\x65ngineIP\x18\x01 \x01(\t\x12\x11\n\tsessionId\x18\x02 \x01(\t\x12\x0f\n\x07queryId\x18\x03 \x01(\t\"\x1c\n\x1a\x43learOrCancelQueryResponse2\xaa\x0e\n\x12QueryEngineService\x12&\n\x05\x63lear\x12\r.ClearRequest\x1a\x0e.ClearResponse\x12\x38\n\x0b\x63\x61ncelQuery\x12\x13.CancelQueryRequest\x1a\x14.CancelQueryResponse\x12M\n\x12\x63learOrCancelQuery\x12\x1a.ClearOrCancelQueryRequest\x1a\x1b.ClearOrCancelQueryResponse\x12,\n\x07\x65xplain\x12\x0f.ExplainRequest\x1a\x10.ExplainResponse\x12)\n\x06\x64ryRun\x12\x0e.DryRunRequest\x1a\x0f.DryRunResponse\x12-\n\x08\x64ryRunV2\x12\x10.DryRunRequestV2\x1a\x0f.DryRunResponse\x12\x41\n\x0e\x65xplainAnalyze\x12\x16.ExplainAnalyzeRequest\x1a\x17.ExplainAnalyzeResponse\x12G\n\x10prepareStatement\x12\x18.PrepareStatementRequest\x1a\x19.PrepareStatementResponse\x12K\n\x12prepareStatementV2\x12\x1a.PrepareStatementV2Request\x1a\x19.PrepareStatementResponse\x12G\n\x10\x65xecuteStatement\x12\x18.ExecuteStatementRequest\x1a\x19.ExecuteStatementResponse\x12K\n\x12\x65xecuteStatementV2\x12\x1a.ExecuteStatementV2Request\x1a\x19.ExecuteStatementResponse\x12G\n\x10getNextResultRow\x12\x18.GetNextResultRowRequest\x1a\x19.GetNextResultRowResponse\x12M\n\x12getNextResultBatch\x12\x1a.GetNextResultBatchRequest\x1a\x1b.GetNextResultBatchResponse\x12J\n\x11getResultMetadata\x12\x19.GetResultMetadataRequest\x1a\x1a.GetResultMetadataResponse\x12;\n\x0c\x61uthenticate\x12\x14.AuthenticateRequest\x1a\x15.AuthenticateResponse\x12\x32\n\tgetTables\x12\x11.GetTablesRequest\x1a\x12.GetTablesResponse\x12\x36\n\x0bgetTablesV2\x12\x13.GetTablesV2Request\x1a\x12.GetTablesResponse\x12\x41\n\x0egetSchemaNames\x12\x16.GetSchemaNamesRequest\x1a\x17.GetSchemaNamesResponse\x12\x45\n\x10getSchemaNamesV2\x12\x18.GetSchemaNamesV2Request\x1a\x17.GetSchemaNamesResponse\x12\x35\n\ngetColumns\x12\x12.GetColumnsRequest\x1a\x13.GetColumnsResponse\x12\x39\n\x0cgetColumnsV2\x12\x14.GetColumnsV2Request\x1a\x13.GetColumnsResponse\x12\x38\n\x0bupdateUsers\x12\x13.UpdateUsersRequest\x1a\x14.UpdateUsersResponse\x12/\n\x08setProps\x12\x10.SetPropsRequest\x1a\x11.SetPropsResponse\x12)\n\x06status\x12\x0e.StatusRequest\x1a\x0f.StatusResponse\x12\x38\n\x0b\x61\x64\x64\x43\x61talogs\x12\x13.AddCatalogsRequest\x1a\x14.AddCatalogsResponse\x12I\n\x16getAddCatalogsResponse\x12\x16.GetAddCatalogsRequest\x1a\x17.GetAddCatalogsResponse\x12;\n\x0cgetCataloges\x12\x14.GetCatalogesRequest\x1a\x15.GetCatalogesResponse\x12\x45\n\x18getNextRemoteCachedChunk\x12\x13.RemoteChunkRequest\x1a\x14.RemoteChunkResponse\x12\x44\n\x0frefreshCatalogs\x12\x17.RefreshCatalogsRequest\x1a\x18.RefreshCatalogsResponseB\x02P\x01\x62\x06proto3')
|
|
17
18
|
|
|
18
19
|
_globals = globals()
|
|
19
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
20
21
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'e6x_engine_pb2', _globals)
|
|
21
|
-
if _descriptor._USE_C_DESCRIPTORS
|
|
22
|
-
DESCRIPTOR.
|
|
23
|
-
DESCRIPTOR._serialized_options = b'P\001'
|
|
22
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
23
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
24
|
+
_globals['DESCRIPTOR']._serialized_options = b'P\001'
|
|
24
25
|
_globals['_GFIELDINFO']._serialized_start=20
|
|
25
26
|
_globals['_GFIELDINFO']._serialized_end=70
|
|
26
27
|
_globals['_FAILEDSCHEMAELEMENT']._serialized_start=72
|
|
@@ -55,86 +56,86 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
55
56
|
_globals['_EXPLAINANALYZERESPONSE']._serialized_end=1057
|
|
56
57
|
_globals['_PREPARESTATEMENTREQUEST']._serialized_start=1059
|
|
57
58
|
_globals['_PREPARESTATEMENTREQUEST']._serialized_end=1157
|
|
58
|
-
_globals['_PREPARESTATEMENTV2REQUEST']._serialized_start=
|
|
59
|
-
_globals['_PREPARESTATEMENTV2REQUEST']._serialized_end=
|
|
60
|
-
_globals['_PREPARESTATEMENTRESPONSE']._serialized_start=
|
|
61
|
-
_globals['_PREPARESTATEMENTRESPONSE']._serialized_end=
|
|
62
|
-
_globals['_USERACCESSINFO']._serialized_start=
|
|
63
|
-
_globals['_USERACCESSINFO']._serialized_end=
|
|
64
|
-
_globals['_EXECUTESTATEMENTREQUEST']._serialized_start=
|
|
65
|
-
_globals['_EXECUTESTATEMENTREQUEST']._serialized_end=
|
|
66
|
-
_globals['_EXECUTESTATEMENTV2REQUEST']._serialized_start=
|
|
67
|
-
_globals['_EXECUTESTATEMENTV2REQUEST']._serialized_end=
|
|
68
|
-
_globals['_EXECUTESTATEMENTRESPONSE']._serialized_start=
|
|
69
|
-
_globals['_EXECUTESTATEMENTRESPONSE']._serialized_end=
|
|
70
|
-
_globals['_GETNEXTRESULTROWREQUEST']._serialized_start=
|
|
71
|
-
_globals['_GETNEXTRESULTROWREQUEST']._serialized_end=
|
|
72
|
-
_globals['_GETNEXTRESULTROWRESPONSE']._serialized_start=
|
|
73
|
-
_globals['_GETNEXTRESULTROWRESPONSE']._serialized_end=
|
|
74
|
-
_globals['_GETNEXTRESULTBATCHREQUEST']._serialized_start=
|
|
75
|
-
_globals['_GETNEXTRESULTBATCHREQUEST']._serialized_end=
|
|
76
|
-
_globals['_GETNEXTRESULTBATCHRESPONSE']._serialized_start=
|
|
77
|
-
_globals['_GETNEXTRESULTBATCHRESPONSE']._serialized_end=
|
|
78
|
-
_globals['_GETRESULTMETADATAREQUEST']._serialized_start=
|
|
79
|
-
_globals['_GETRESULTMETADATAREQUEST']._serialized_end=
|
|
80
|
-
_globals['_GETRESULTMETADATARESPONSE']._serialized_start=
|
|
81
|
-
_globals['_GETRESULTMETADATARESPONSE']._serialized_end=
|
|
82
|
-
_globals['_AUTHENTICATEREQUEST']._serialized_start=
|
|
83
|
-
_globals['_AUTHENTICATEREQUEST']._serialized_end=
|
|
84
|
-
_globals['_AUTHENTICATERESPONSE']._serialized_start=
|
|
85
|
-
_globals['_AUTHENTICATERESPONSE']._serialized_end=
|
|
86
|
-
_globals['_GETTABLESREQUEST']._serialized_start=
|
|
87
|
-
_globals['_GETTABLESREQUEST']._serialized_end=
|
|
88
|
-
_globals['_GETTABLESV2REQUEST']._serialized_start=
|
|
89
|
-
_globals['_GETTABLESV2REQUEST']._serialized_end=
|
|
90
|
-
_globals['_GETTABLESRESPONSE']._serialized_start=
|
|
91
|
-
_globals['_GETTABLESRESPONSE']._serialized_end=
|
|
92
|
-
_globals['_GETSCHEMANAMESREQUEST']._serialized_start=
|
|
93
|
-
_globals['_GETSCHEMANAMESREQUEST']._serialized_end=
|
|
94
|
-
_globals['_GETSCHEMANAMESV2REQUEST']._serialized_start=
|
|
95
|
-
_globals['_GETSCHEMANAMESV2REQUEST']._serialized_end=
|
|
96
|
-
_globals['_GETSCHEMANAMESRESPONSE']._serialized_start=
|
|
97
|
-
_globals['_GETSCHEMANAMESRESPONSE']._serialized_end=
|
|
98
|
-
_globals['_GETCOLUMNSREQUEST']._serialized_start=
|
|
99
|
-
_globals['_GETCOLUMNSREQUEST']._serialized_end=
|
|
100
|
-
_globals['_GETCOLUMNSV2REQUEST']._serialized_start=
|
|
101
|
-
_globals['_GETCOLUMNSV2REQUEST']._serialized_end=
|
|
102
|
-
_globals['_GETCOLUMNSRESPONSE']._serialized_start=
|
|
103
|
-
_globals['_GETCOLUMNSRESPONSE']._serialized_end=
|
|
104
|
-
_globals['_STATUSREQUEST']._serialized_start=
|
|
105
|
-
_globals['_STATUSREQUEST']._serialized_end=
|
|
106
|
-
_globals['_STATUSRESPONSE']._serialized_start=
|
|
107
|
-
_globals['_STATUSRESPONSE']._serialized_end=
|
|
108
|
-
_globals['_ADDCATALOGSREQUEST']._serialized_start=
|
|
109
|
-
_globals['_ADDCATALOGSREQUEST']._serialized_end=
|
|
110
|
-
_globals['_UPDATEUSERSREQUEST']._serialized_start=
|
|
111
|
-
_globals['_UPDATEUSERSREQUEST']._serialized_end=
|
|
112
|
-
_globals['_UPDATEUSERSRESPONSE']._serialized_start=
|
|
113
|
-
_globals['_UPDATEUSERSRESPONSE']._serialized_end=
|
|
114
|
-
_globals['_SETPROPSREQUEST']._serialized_start=
|
|
115
|
-
_globals['_SETPROPSREQUEST']._serialized_end=
|
|
116
|
-
_globals['_SETPROPSRESPONSE']._serialized_start=
|
|
117
|
-
_globals['_SETPROPSRESPONSE']._serialized_end=
|
|
118
|
-
_globals['_GETADDCATALOGSREQUEST']._serialized_start=
|
|
119
|
-
_globals['_GETADDCATALOGSREQUEST']._serialized_end=
|
|
120
|
-
_globals['_ADDCATALOGSRESPONSE']._serialized_start=
|
|
121
|
-
_globals['_ADDCATALOGSRESPONSE']._serialized_end=
|
|
122
|
-
_globals['_GETCATALOGESREQUEST']._serialized_start=
|
|
123
|
-
_globals['_GETCATALOGESREQUEST']._serialized_end=
|
|
124
|
-
_globals['_GETCATALOGESRESPONSE']._serialized_start=
|
|
125
|
-
_globals['_GETCATALOGESRESPONSE']._serialized_end=
|
|
126
|
-
_globals['_REFRESHCATALOGSREQUEST']._serialized_start=
|
|
127
|
-
_globals['_REFRESHCATALOGSREQUEST']._serialized_end=
|
|
128
|
-
_globals['_REFRESHCATALOGSRESPONSE']._serialized_start=
|
|
129
|
-
_globals['_REFRESHCATALOGSRESPONSE']._serialized_end=
|
|
130
|
-
_globals['_REMOTECHUNKREQUEST']._serialized_start=
|
|
131
|
-
_globals['_REMOTECHUNKREQUEST']._serialized_end=
|
|
132
|
-
_globals['_REMOTECHUNKRESPONSE']._serialized_start=
|
|
133
|
-
_globals['_REMOTECHUNKRESPONSE']._serialized_end=
|
|
134
|
-
_globals['_CLEARORCANCELQUERYREQUEST']._serialized_start=
|
|
135
|
-
_globals['_CLEARORCANCELQUERYREQUEST']._serialized_end=
|
|
136
|
-
_globals['_CLEARORCANCELQUERYRESPONSE']._serialized_start=
|
|
137
|
-
_globals['_CLEARORCANCELQUERYRESPONSE']._serialized_end=
|
|
138
|
-
_globals['_QUERYENGINESERVICE']._serialized_start=
|
|
139
|
-
_globals['_QUERYENGINESERVICE']._serialized_end=
|
|
59
|
+
_globals['_PREPARESTATEMENTV2REQUEST']._serialized_start=1160
|
|
60
|
+
_globals['_PREPARESTATEMENTV2REQUEST']._serialized_end=1315
|
|
61
|
+
_globals['_PREPARESTATEMENTRESPONSE']._serialized_start=1317
|
|
62
|
+
_globals['_PREPARESTATEMENTRESPONSE']._serialized_end=1378
|
|
63
|
+
_globals['_USERACCESSINFO']._serialized_start=1380
|
|
64
|
+
_globals['_USERACCESSINFO']._serialized_end=1444
|
|
65
|
+
_globals['_EXECUTESTATEMENTREQUEST']._serialized_start=1446
|
|
66
|
+
_globals['_EXECUTESTATEMENTREQUEST']._serialized_end=1549
|
|
67
|
+
_globals['_EXECUTESTATEMENTV2REQUEST']._serialized_start=1552
|
|
68
|
+
_globals['_EXECUTESTATEMENTV2REQUEST']._serialized_end=1690
|
|
69
|
+
_globals['_EXECUTESTATEMENTRESPONSE']._serialized_start=1692
|
|
70
|
+
_globals['_EXECUTESTATEMENTRESPONSE']._serialized_end=1718
|
|
71
|
+
_globals['_GETNEXTRESULTROWREQUEST']._serialized_start=1720
|
|
72
|
+
_globals['_GETNEXTRESULTROWREQUEST']._serialized_end=1799
|
|
73
|
+
_globals['_GETNEXTRESULTROWRESPONSE']._serialized_start=1801
|
|
74
|
+
_globals['_GETNEXTRESULTROWRESPONSE']._serialized_end=1846
|
|
75
|
+
_globals['_GETNEXTRESULTBATCHREQUEST']._serialized_start=1848
|
|
76
|
+
_globals['_GETNEXTRESULTBATCHREQUEST']._serialized_end=1967
|
|
77
|
+
_globals['_GETNEXTRESULTBATCHRESPONSE']._serialized_start=1969
|
|
78
|
+
_globals['_GETNEXTRESULTBATCHRESPONSE']._serialized_end=2018
|
|
79
|
+
_globals['_GETRESULTMETADATAREQUEST']._serialized_start=2020
|
|
80
|
+
_globals['_GETRESULTMETADATAREQUEST']._serialized_end=2100
|
|
81
|
+
_globals['_GETRESULTMETADATARESPONSE']._serialized_start=2102
|
|
82
|
+
_globals['_GETRESULTMETADATARESPONSE']._serialized_end=2153
|
|
83
|
+
_globals['_AUTHENTICATEREQUEST']._serialized_start=2155
|
|
84
|
+
_globals['_AUTHENTICATEREQUEST']._serialized_end=2208
|
|
85
|
+
_globals['_AUTHENTICATERESPONSE']._serialized_start=2210
|
|
86
|
+
_globals['_AUTHENTICATERESPONSE']._serialized_end=2270
|
|
87
|
+
_globals['_GETTABLESREQUEST']._serialized_start=2272
|
|
88
|
+
_globals['_GETTABLESREQUEST']._serialized_end=2325
|
|
89
|
+
_globals['_GETTABLESV2REQUEST']._serialized_start=2327
|
|
90
|
+
_globals['_GETTABLESV2REQUEST']._serialized_end=2399
|
|
91
|
+
_globals['_GETTABLESRESPONSE']._serialized_start=2401
|
|
92
|
+
_globals['_GETTABLESRESPONSE']._serialized_end=2436
|
|
93
|
+
_globals['_GETSCHEMANAMESREQUEST']._serialized_start=2438
|
|
94
|
+
_globals['_GETSCHEMANAMESREQUEST']._serialized_end=2480
|
|
95
|
+
_globals['_GETSCHEMANAMESV2REQUEST']._serialized_start=2482
|
|
96
|
+
_globals['_GETSCHEMANAMESV2REQUEST']._serialized_end=2543
|
|
97
|
+
_globals['_GETSCHEMANAMESRESPONSE']._serialized_start=2545
|
|
98
|
+
_globals['_GETSCHEMANAMESRESPONSE']._serialized_end=2586
|
|
99
|
+
_globals['_GETCOLUMNSREQUEST']._serialized_start=2588
|
|
100
|
+
_globals['_GETCOLUMNSREQUEST']._serialized_end=2657
|
|
101
|
+
_globals['_GETCOLUMNSV2REQUEST']._serialized_start=2659
|
|
102
|
+
_globals['_GETCOLUMNSV2REQUEST']._serialized_end=2747
|
|
103
|
+
_globals['_GETCOLUMNSRESPONSE']._serialized_start=2749
|
|
104
|
+
_globals['_GETCOLUMNSRESPONSE']._serialized_end=2801
|
|
105
|
+
_globals['_STATUSREQUEST']._serialized_start=2803
|
|
106
|
+
_globals['_STATUSREQUEST']._serialized_end=2872
|
|
107
|
+
_globals['_STATUSRESPONSE']._serialized_start=2874
|
|
108
|
+
_globals['_STATUSRESPONSE']._serialized_end=2924
|
|
109
|
+
_globals['_ADDCATALOGSREQUEST']._serialized_start=2926
|
|
110
|
+
_globals['_ADDCATALOGSREQUEST']._serialized_end=2979
|
|
111
|
+
_globals['_UPDATEUSERSREQUEST']._serialized_start=2981
|
|
112
|
+
_globals['_UPDATEUSERSREQUEST']._serialized_end=3016
|
|
113
|
+
_globals['_UPDATEUSERSRESPONSE']._serialized_start=3018
|
|
114
|
+
_globals['_UPDATEUSERSRESPONSE']._serialized_end=3039
|
|
115
|
+
_globals['_SETPROPSREQUEST']._serialized_start=3041
|
|
116
|
+
_globals['_SETPROPSREQUEST']._serialized_end=3092
|
|
117
|
+
_globals['_SETPROPSRESPONSE']._serialized_start=3094
|
|
118
|
+
_globals['_SETPROPSRESPONSE']._serialized_end=3112
|
|
119
|
+
_globals['_GETADDCATALOGSREQUEST']._serialized_start=3114
|
|
120
|
+
_globals['_GETADDCATALOGSREQUEST']._serialized_end=3156
|
|
121
|
+
_globals['_ADDCATALOGSRESPONSE']._serialized_start=3158
|
|
122
|
+
_globals['_ADDCATALOGSRESPONSE']._serialized_end=3179
|
|
123
|
+
_globals['_GETCATALOGESREQUEST']._serialized_start=3181
|
|
124
|
+
_globals['_GETCATALOGESREQUEST']._serialized_end=3202
|
|
125
|
+
_globals['_GETCATALOGESRESPONSE']._serialized_start=3204
|
|
126
|
+
_globals['_GETCATALOGESRESPONSE']._serialized_end=3270
|
|
127
|
+
_globals['_REFRESHCATALOGSREQUEST']._serialized_start=3272
|
|
128
|
+
_globals['_REFRESHCATALOGSREQUEST']._serialized_end=3315
|
|
129
|
+
_globals['_REFRESHCATALOGSRESPONSE']._serialized_start=3317
|
|
130
|
+
_globals['_REFRESHCATALOGSRESPONSE']._serialized_end=3342
|
|
131
|
+
_globals['_REMOTECHUNKREQUEST']._serialized_start=3344
|
|
132
|
+
_globals['_REMOTECHUNKREQUEST']._serialized_end=3432
|
|
133
|
+
_globals['_REMOTECHUNKRESPONSE']._serialized_start=3434
|
|
134
|
+
_globals['_REMOTECHUNKRESPONSE']._serialized_end=3485
|
|
135
|
+
_globals['_CLEARORCANCELQUERYREQUEST']._serialized_start=3487
|
|
136
|
+
_globals['_CLEARORCANCELQUERYREQUEST']._serialized_end=3568
|
|
137
|
+
_globals['_CLEARORCANCELQUERYRESPONSE']._serialized_start=3570
|
|
138
|
+
_globals['_CLEARORCANCELQUERYRESPONSE']._serialized_end=3598
|
|
139
|
+
_globals['_QUERYENGINESERVICE']._serialized_start=3601
|
|
140
|
+
_globals['_QUERYENGINESERVICE']._serialized_end=5435
|
|
140
141
|
# @@protoc_insertion_point(module_scope)
|