Skip to content
Snippets Groups Projects
Commit 2aa9f047 authored by David Sehnal's avatar David Sehnal
Browse files

Fixed a bug in Table.window

parent 8ea37cd5
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ namespace Table {
if (start === 0 && end === table._rowCount) return table;
const ret = Object.create(null);
const columns = Object.keys(schema);
ret._rowCount = view.length;
ret._rowCount = end - start;
ret._columns = columns;
ret._schema = schema;
for (const k of columns) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment