Skip to content

Commit

Permalink
rename table.ts to recordbatch.ts in preparation for merging latest
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jan 19, 2018
1 parent e3f629d commit f3f3b86
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions js/src/Arrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Vector } from './vector';
import * as vector_ from './vector';
import * as util_ from './util/int';
import { Schema, Field, Type } from './type';
import { Table, RecordBatch } from './table';
import { Table, RecordBatch } from './recordbatch';
import { read, readAsync } from './ipc/reader/arrow';

export import View = vector_.View;
Expand Down Expand Up @@ -130,11 +130,7 @@ try {
Arrow['Table'] = Table;
Arrow['RecordBatch'] = RecordBatch;
Arrow['Vector'] = Vector;
// Arrow['DataType'] = type_.DataType;

// Arrow['Uint64'] = util_.Uint64;
// Arrow['Int64'] = util_.Int64;
// Arrow['Int128'] = util_.Int128;
}
} catch (e) { /* not the UMD bundle */ }
/* end umd exports */
Expand Down
2 changes: 1 addition & 1 deletion js/src/ipc/reader/arrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

import { readJSON } from './json';
import { RecordBatch } from '../../table';
import { RecordBatch } from '../../recordbatch';
import { readBuffers, readBuffersAsync } from './binary';
import { readRecordBatches, readRecordBatchesAsync, TypeDataLoader } from './vector';
import { Schema } from '../../type';
Expand Down
2 changes: 1 addition & 1 deletion js/src/ipc/reader/vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

import { Vector } from '../../vector';
import { RecordBatch } from '../../table';
import { RecordBatch } from '../../recordbatch';
import { TypeVisitor } from '../../visitor';
import { FlatType, NestedType, ListType } from '../../type';
import { Message, FieldMetadata, BufferMetadata } from '../metadata';
Expand Down
File renamed without changes.

0 comments on commit f3f3b86

Please sign in to comment.