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 aa338f8 commit 56859e4Copy full SHA for 56859e4
packages/components/src/lib/tableProvider.ts
@@ -14,7 +14,6 @@ export function parquetDataFrame(from: AsyncBufferFromUrl, metadata: FileMetaDat
14
const sortCache = new Map<string, Promise<number[]>>()
15
const data = new Array<ResolvableRow>(Number(metadata.num_rows))
16
/// ^ warning: the type is a lie at that point, because all rows are undefined for now
17
- /// TODO(SL): improve the type safety
18
const groups = new Array(metadata.row_groups.length).fill(false)
19
let groupStart = 0
20
const groupEnds = metadata.row_groups.map(group => groupStart += Number(group.num_rows))
0 commit comments