@@ -145,88 +145,46 @@ declare class Client {
145145
146146 constructor ( output : thrift . TTransport , pClass : { new ( trans : thrift . TTransport ) : thrift . TProtocol } ) ;
147147
148- OpenSession ( req : TOpenSessionReq ) : TOpenSessionResp ;
149-
150148 OpenSession ( req : TOpenSessionReq , callback ?: ( error : void , response : TOpenSessionResp ) => void ) : void ;
151149
152- CloseSession ( req : TCloseSessionReq ) : TCloseSessionResp ;
153-
154150 CloseSession ( req : TCloseSessionReq , callback ?: ( error : void , response : TCloseSessionResp ) => void ) : void ;
155151
156- GetInfo ( req : TGetInfoReq ) : TGetInfoResp ;
157-
158152 GetInfo ( req : TGetInfoReq , callback ?: ( error : void , response : TGetInfoResp ) => void ) : void ;
159153
160- ExecuteStatement ( req : TExecuteStatementReq ) : TExecuteStatementResp ;
161-
162154 ExecuteStatement ( req : TExecuteStatementReq , callback ?: ( error : void , response : TExecuteStatementResp ) => void ) : void ;
163155
164- GetTypeInfo ( req : TGetTypeInfoReq ) : TGetTypeInfoResp ;
165-
166156 GetTypeInfo ( req : TGetTypeInfoReq , callback ?: ( error : void , response : TGetTypeInfoResp ) => void ) : void ;
167157
168- GetCatalogs ( req : TGetCatalogsReq ) : TGetCatalogsResp ;
169-
170158 GetCatalogs ( req : TGetCatalogsReq , callback ?: ( error : void , response : TGetCatalogsResp ) => void ) : void ;
171159
172- GetSchemas ( req : TGetSchemasReq ) : TGetSchemasResp ;
173-
174160 GetSchemas ( req : TGetSchemasReq , callback ?: ( error : void , response : TGetSchemasResp ) => void ) : void ;
175161
176- GetTables ( req : TGetTablesReq ) : TGetTablesResp ;
177-
178162 GetTables ( req : TGetTablesReq , callback ?: ( error : void , response : TGetTablesResp ) => void ) : void ;
179163
180- GetTableTypes ( req : TGetTableTypesReq ) : TGetTableTypesResp ;
181-
182164 GetTableTypes ( req : TGetTableTypesReq , callback ?: ( error : void , response : TGetTableTypesResp ) => void ) : void ;
183165
184- GetColumns ( req : TGetColumnsReq ) : TGetColumnsResp ;
185-
186166 GetColumns ( req : TGetColumnsReq , callback ?: ( error : void , response : TGetColumnsResp ) => void ) : void ;
187167
188- GetFunctions ( req : TGetFunctionsReq ) : TGetFunctionsResp ;
189-
190168 GetFunctions ( req : TGetFunctionsReq , callback ?: ( error : void , response : TGetFunctionsResp ) => void ) : void ;
191169
192- GetPrimaryKeys ( req : TGetPrimaryKeysReq ) : TGetPrimaryKeysResp ;
193-
194170 GetPrimaryKeys ( req : TGetPrimaryKeysReq , callback ?: ( error : void , response : TGetPrimaryKeysResp ) => void ) : void ;
195171
196- GetCrossReference ( req : TGetCrossReferenceReq ) : TGetCrossReferenceResp ;
197-
198172 GetCrossReference ( req : TGetCrossReferenceReq , callback ?: ( error : void , response : TGetCrossReferenceResp ) => void ) : void ;
199173
200- GetOperationStatus ( req : TGetOperationStatusReq ) : TGetOperationStatusResp ;
201-
202174 GetOperationStatus ( req : TGetOperationStatusReq , callback ?: ( error : void , response : TGetOperationStatusResp ) => void ) : void ;
203175
204- CancelOperation ( req : TCancelOperationReq ) : TCancelOperationResp ;
205-
206176 CancelOperation ( req : TCancelOperationReq , callback ?: ( error : void , response : TCancelOperationResp ) => void ) : void ;
207177
208- CloseOperation ( req : TCloseOperationReq ) : TCloseOperationResp ;
209-
210178 CloseOperation ( req : TCloseOperationReq , callback ?: ( error : void , response : TCloseOperationResp ) => void ) : void ;
211179
212- GetResultSetMetadata ( req : TGetResultSetMetadataReq ) : TGetResultSetMetadataResp ;
213-
214180 GetResultSetMetadata ( req : TGetResultSetMetadataReq , callback ?: ( error : void , response : TGetResultSetMetadataResp ) => void ) : void ;
215181
216- FetchResults ( req : TFetchResultsReq ) : TFetchResultsResp ;
217-
218182 FetchResults ( req : TFetchResultsReq , callback ?: ( error : void , response : TFetchResultsResp ) => void ) : void ;
219183
220- GetDelegationToken ( req : TGetDelegationTokenReq ) : TGetDelegationTokenResp ;
221-
222184 GetDelegationToken ( req : TGetDelegationTokenReq , callback ?: ( error : void , response : TGetDelegationTokenResp ) => void ) : void ;
223185
224- CancelDelegationToken ( req : TCancelDelegationTokenReq ) : TCancelDelegationTokenResp ;
225-
226186 CancelDelegationToken ( req : TCancelDelegationTokenReq , callback ?: ( error : void , response : TCancelDelegationTokenResp ) => void ) : void ;
227187
228- RenewDelegationToken ( req : TRenewDelegationTokenReq ) : TRenewDelegationTokenResp ;
229-
230188 RenewDelegationToken ( req : TRenewDelegationTokenReq , callback ?: ( error : void , response : TRenewDelegationTokenResp ) => void ) : void ;
231189}
232190
0 commit comments