From 3d5240a7e76e233e0c57a9251aa658eec4db6b91 Mon Sep 17 00:00:00 2001 From: Paul Taylor Date: Sat, 27 Jan 2018 00:52:00 -0800 Subject: [PATCH] fix more externs --- js/src/Arrow.externs.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/js/src/Arrow.externs.js b/js/src/Arrow.externs.js index a549cae5a7c8b..438ac8b736cac 100644 --- a/js/src/Arrow.externs.js +++ b/js/src/Arrow.externs.js @@ -38,8 +38,6 @@ Table.empty = function() {}; /** @type {?} */ Table.prototype.schema; /** @type {?} */ -Table.prototype.columns; -/** @type {?} */ Table.prototype.length; /** @type {?} */ Table.prototype.numCols; @@ -58,15 +56,13 @@ Table.prototype.select; /** @type {?} */ Table.prototype.rowsToString; /** @type {?} */ -Table.prototype.lengths; +Table.prototype.batchesUnion; /** @type {?} */ Table.prototype.batches; /** @type {?} */ Table.prototype.countBy; /** @type {?} */ Table.prototype.scan; -/** @type {?} */ -Table.prototype.get; var CountByResult = function() {}; /** @type {?} */ @@ -124,7 +120,7 @@ RecordBatch.from = function() {}; /** @type {?} */ RecordBatch.prototype.numCols; /** @type {?} */ -RecordBatch.prototype.numRows; +RecordBatch.prototype.length; /** @type {?} */ RecordBatch.prototype.schema; /** @type {?} */ @@ -311,6 +307,8 @@ Schema.prototype.version; Schema.prototype.metadata; /** @type {?} */ Schema.prototype.dictionaries; +/** @type {?} */ +Schema.prototype.select; var Field = function() {}; /** @type {?} */ Field.prototype.name;