@@ -4,7 +4,7 @@ import IOperation, {
4
4
FinishedOptions ,
5
5
GetSchemaOptions ,
6
6
WaitUntilReadyOptions ,
7
- } from '.. /contracts/IOperation' ;
7
+ } from './contracts/IOperation' ;
8
8
import {
9
9
TGetOperationStatusResp ,
10
10
TOperationHandle ,
@@ -14,20 +14,20 @@ import {
14
14
TSparkRowSetType ,
15
15
TCloseOperationResp ,
16
16
TOperationState ,
17
- } from '../../ thrift/TCLIService_types' ;
18
- import Status from '.. /dto/Status' ;
19
- import { LogLevel } from '.. /contracts/IDBSQLLogger' ;
20
- import OperationStateError , { OperationStateErrorCode } from '.. /errors/OperationStateError' ;
21
- import IResultsProvider from '.. /result/IResultsProvider' ;
22
- import RowSetProvider from '.. /result/RowSetProvider' ;
23
- import JsonResultHandler from '.. /result/JsonResultHandler' ;
24
- import ArrowResultHandler from '.. /result/ArrowResultHandler' ;
25
- import CloudFetchResultHandler from '.. /result/CloudFetchResultHandler' ;
26
- import ArrowResultConverter from '.. /result/ArrowResultConverter' ;
27
- import ResultSlicer from '.. /result/ResultSlicer' ;
28
- import { definedOrError } from '.. /utils' ;
29
- import HiveDriverError from '.. /errors/HiveDriverError' ;
30
- import IClientContext from '.. /contracts/IClientContext' ;
17
+ } from '../thrift/TCLIService_types' ;
18
+ import Status from './dto/Status' ;
19
+ import { LogLevel } from './contracts/IDBSQLLogger' ;
20
+ import OperationStateError , { OperationStateErrorCode } from './errors/OperationStateError' ;
21
+ import IResultsProvider from './result/IResultsProvider' ;
22
+ import RowSetProvider from './result/RowSetProvider' ;
23
+ import JsonResultHandler from './result/JsonResultHandler' ;
24
+ import ArrowResultHandler from './result/ArrowResultHandler' ;
25
+ import CloudFetchResultHandler from './result/CloudFetchResultHandler' ;
26
+ import ArrowResultConverter from './result/ArrowResultConverter' ;
27
+ import ResultSlicer from './result/ResultSlicer' ;
28
+ import { definedOrError } from './utils' ;
29
+ import HiveDriverError from './errors/HiveDriverError' ;
30
+ import IClientContext from './contracts/IClientContext' ;
31
31
32
32
const defaultMaxRows = 100000 ;
33
33
0 commit comments