We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c536f49 commit f4cd59aCopy full SHA for f4cd59a
packages/components/src/lib/tableProvider.ts
@@ -13,7 +13,6 @@ export function parquetDataFrame(from: AsyncBufferFrom, metadata: FileMetaData):
13
const sortCache = new Map<string, Promise<number[]>>()
14
const data = new Array<ResolvableRow>(Number(metadata.num_rows))
15
/// ^ warning: the type is a lie at that point, because all rows are undefined for now
16
- /// TODO(SL): improve the type safety
17
const groups = new Array(metadata.row_groups.length).fill(false)
18
let groupStart = 0
19
const groupEnds = metadata.row_groups.map(group => groupStart += Number(group.num_rows))
0 commit comments