@@ -78,6 +78,7 @@ import TDBSqlTempView = ttypes.TDBSqlTempView
7878import TDBSqlSessionCapabilities = ttypes . TDBSqlSessionCapabilities
7979import TExpressionInfo = ttypes . TExpressionInfo
8080import TDBSqlConfValue = ttypes . TDBSqlConfValue
81+ import TSQLVariable = ttypes . TSQLVariable
8182import TDBSqlSessionConf = ttypes . TDBSqlSessionConf
8283import TStatus = ttypes . TStatus
8384import TNamespace = ttypes . TNamespace
@@ -97,6 +98,7 @@ import TSparkArrowTypes = ttypes.TSparkArrowTypes
9798import TExecuteStatementReq = ttypes . TExecuteStatementReq
9899import TDBSqlStatement = ttypes . TDBSqlStatement
99100import TSparkParameterValue = ttypes . TSparkParameterValue
101+ import TSparkParameterValueArg = ttypes . TSparkParameterValueArg
100102import TSparkParameter = ttypes . TSparkParameter
101103import TStatementConf = ttypes . TStatementConf
102104import TExecuteStatementResp = ttypes . TExecuteStatementResp
@@ -143,46 +145,88 @@ declare class Client {
143145
144146 constructor ( output : thrift . TTransport , pClass : { new ( trans : thrift . TTransport ) : thrift . TProtocol } ) ;
145147
148+ OpenSession ( req : TOpenSessionReq ) : TOpenSessionResp ;
149+
146150 OpenSession ( req : TOpenSessionReq , callback ?: ( error : void , response : TOpenSessionResp ) => void ) : void ;
147151
152+ CloseSession ( req : TCloseSessionReq ) : TCloseSessionResp ;
153+
148154 CloseSession ( req : TCloseSessionReq , callback ?: ( error : void , response : TCloseSessionResp ) => void ) : void ;
149155
156+ GetInfo ( req : TGetInfoReq ) : TGetInfoResp ;
157+
150158 GetInfo ( req : TGetInfoReq , callback ?: ( error : void , response : TGetInfoResp ) => void ) : void ;
151159
160+ ExecuteStatement ( req : TExecuteStatementReq ) : TExecuteStatementResp ;
161+
152162 ExecuteStatement ( req : TExecuteStatementReq , callback ?: ( error : void , response : TExecuteStatementResp ) => void ) : void ;
153163
164+ GetTypeInfo ( req : TGetTypeInfoReq ) : TGetTypeInfoResp ;
165+
154166 GetTypeInfo ( req : TGetTypeInfoReq , callback ?: ( error : void , response : TGetTypeInfoResp ) => void ) : void ;
155167
168+ GetCatalogs ( req : TGetCatalogsReq ) : TGetCatalogsResp ;
169+
156170 GetCatalogs ( req : TGetCatalogsReq , callback ?: ( error : void , response : TGetCatalogsResp ) => void ) : void ;
157171
172+ GetSchemas ( req : TGetSchemasReq ) : TGetSchemasResp ;
173+
158174 GetSchemas ( req : TGetSchemasReq , callback ?: ( error : void , response : TGetSchemasResp ) => void ) : void ;
159175
176+ GetTables ( req : TGetTablesReq ) : TGetTablesResp ;
177+
160178 GetTables ( req : TGetTablesReq , callback ?: ( error : void , response : TGetTablesResp ) => void ) : void ;
161179
180+ GetTableTypes ( req : TGetTableTypesReq ) : TGetTableTypesResp ;
181+
162182 GetTableTypes ( req : TGetTableTypesReq , callback ?: ( error : void , response : TGetTableTypesResp ) => void ) : void ;
163183
184+ GetColumns ( req : TGetColumnsReq ) : TGetColumnsResp ;
185+
164186 GetColumns ( req : TGetColumnsReq , callback ?: ( error : void , response : TGetColumnsResp ) => void ) : void ;
165187
188+ GetFunctions ( req : TGetFunctionsReq ) : TGetFunctionsResp ;
189+
166190 GetFunctions ( req : TGetFunctionsReq , callback ?: ( error : void , response : TGetFunctionsResp ) => void ) : void ;
167191
192+ GetPrimaryKeys ( req : TGetPrimaryKeysReq ) : TGetPrimaryKeysResp ;
193+
168194 GetPrimaryKeys ( req : TGetPrimaryKeysReq , callback ?: ( error : void , response : TGetPrimaryKeysResp ) => void ) : void ;
169195
196+ GetCrossReference ( req : TGetCrossReferenceReq ) : TGetCrossReferenceResp ;
197+
170198 GetCrossReference ( req : TGetCrossReferenceReq , callback ?: ( error : void , response : TGetCrossReferenceResp ) => void ) : void ;
171199
200+ GetOperationStatus ( req : TGetOperationStatusReq ) : TGetOperationStatusResp ;
201+
172202 GetOperationStatus ( req : TGetOperationStatusReq , callback ?: ( error : void , response : TGetOperationStatusResp ) => void ) : void ;
173203
204+ CancelOperation ( req : TCancelOperationReq ) : TCancelOperationResp ;
205+
174206 CancelOperation ( req : TCancelOperationReq , callback ?: ( error : void , response : TCancelOperationResp ) => void ) : void ;
175207
208+ CloseOperation ( req : TCloseOperationReq ) : TCloseOperationResp ;
209+
176210 CloseOperation ( req : TCloseOperationReq , callback ?: ( error : void , response : TCloseOperationResp ) => void ) : void ;
177211
212+ GetResultSetMetadata ( req : TGetResultSetMetadataReq ) : TGetResultSetMetadataResp ;
213+
178214 GetResultSetMetadata ( req : TGetResultSetMetadataReq , callback ?: ( error : void , response : TGetResultSetMetadataResp ) => void ) : void ;
179215
216+ FetchResults ( req : TFetchResultsReq ) : TFetchResultsResp ;
217+
180218 FetchResults ( req : TFetchResultsReq , callback ?: ( error : void , response : TFetchResultsResp ) => void ) : void ;
181219
220+ GetDelegationToken ( req : TGetDelegationTokenReq ) : TGetDelegationTokenResp ;
221+
182222 GetDelegationToken ( req : TGetDelegationTokenReq , callback ?: ( error : void , response : TGetDelegationTokenResp ) => void ) : void ;
183223
224+ CancelDelegationToken ( req : TCancelDelegationTokenReq ) : TCancelDelegationTokenResp ;
225+
184226 CancelDelegationToken ( req : TCancelDelegationTokenReq , callback ?: ( error : void , response : TCancelDelegationTokenResp ) => void ) : void ;
185227
228+ RenewDelegationToken ( req : TRenewDelegationTokenReq ) : TRenewDelegationTokenResp ;
229+
186230 RenewDelegationToken ( req : TRenewDelegationTokenReq , callback ?: ( error : void , response : TRenewDelegationTokenResp ) => void ) : void ;
187231}
188232
0 commit comments