File tree Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import { Vector } from './vector';
21
21
import * as vector_ from './vector' ;
22
22
import * as util_ from './util/int' ;
23
23
import { Schema , Field , Type } from './type' ;
24
- import { Table , RecordBatch } from './table ' ;
24
+ import { Table , RecordBatch } from './recordbatch ' ;
25
25
import { read , readAsync } from './ipc/reader/arrow' ;
26
26
27
27
export import View = vector_ . View ;
@@ -130,11 +130,7 @@ try {
130
130
Arrow [ 'Table' ] = Table ;
131
131
Arrow [ 'RecordBatch' ] = RecordBatch ;
132
132
Arrow [ 'Vector' ] = Vector ;
133
- // Arrow['DataType'] = type_.DataType;
134
133
135
- // Arrow['Uint64'] = util_.Uint64;
136
- // Arrow['Int64'] = util_.Int64;
137
- // Arrow['Int128'] = util_.Int128;
138
134
}
139
135
} catch ( e ) { /* not the UMD bundle */ }
140
136
/* end umd exports */
Original file line number Diff line number Diff line change 16
16
// under the License.
17
17
18
18
import { readJSON } from './json' ;
19
- import { RecordBatch } from '../../table ' ;
19
+ import { RecordBatch } from '../../recordbatch ' ;
20
20
import { readBuffers , readBuffersAsync } from './binary' ;
21
21
import { readRecordBatches , readRecordBatchesAsync , TypeDataLoader } from './vector' ;
22
22
import { Schema } from '../../type' ;
Original file line number Diff line number Diff line change 16
16
// under the License.
17
17
18
18
import { Vector } from '../../vector' ;
19
- import { RecordBatch } from '../../table ' ;
19
+ import { RecordBatch } from '../../recordbatch ' ;
20
20
import { TypeVisitor } from '../../visitor' ;
21
21
import { FlatType , NestedType , ListType } from '../../type' ;
22
22
import { Message , FieldMetadata , BufferMetadata } from '../metadata' ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments