Skip to content

Commit f3f3b86

Browse files
committed
rename table.ts to recordbatch.ts in preparation for merging latest
1 parent e3f629d commit f3f3b86

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

js/src/Arrow.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { Vector } from './vector';
2121
import * as vector_ from './vector';
2222
import * as util_ from './util/int';
2323
import { Schema, Field, Type } from './type';
24-
import { Table, RecordBatch } from './table';
24+
import { Table, RecordBatch } from './recordbatch';
2525
import { read, readAsync } from './ipc/reader/arrow';
2626

2727
export import View = vector_.View;
@@ -130,11 +130,7 @@ try {
130130
Arrow['Table'] = Table;
131131
Arrow['RecordBatch'] = RecordBatch;
132132
Arrow['Vector'] = Vector;
133-
// Arrow['DataType'] = type_.DataType;
134133

135-
// Arrow['Uint64'] = util_.Uint64;
136-
// Arrow['Int64'] = util_.Int64;
137-
// Arrow['Int128'] = util_.Int128;
138134
}
139135
} catch (e) { /* not the UMD bundle */ }
140136
/* end umd exports */

js/src/ipc/reader/arrow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717

1818
import { readJSON } from './json';
19-
import { RecordBatch } from '../../table';
19+
import { RecordBatch } from '../../recordbatch';
2020
import { readBuffers, readBuffersAsync } from './binary';
2121
import { readRecordBatches, readRecordBatchesAsync, TypeDataLoader } from './vector';
2222
import { Schema } from '../../type';

js/src/ipc/reader/vector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717

1818
import { Vector } from '../../vector';
19-
import { RecordBatch } from '../../table';
19+
import { RecordBatch } from '../../recordbatch';
2020
import { TypeVisitor } from '../../visitor';
2121
import { FlatType, NestedType, ListType } from '../../type';
2222
import { Message, FieldMetadata, BufferMetadata } from '../metadata';
File renamed without changes.

0 commit comments

Comments
 (0)