Skip to content

Commit 3549a53

Browse files
committed
Fix expected row length by disabling rowCache
1 parent 37582c1 commit 3549a53

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
"@vitejs/plugin-react": "4.3.2",
4141
"@vitest/coverage-v8": "2.1.2",
4242
"eslint": "9.12.0",
43-
"globals": "15.10.0",
43+
"globals": "15.11.0",
4444
"jsdom": "25.0.1",
4545
"react": "18.3.1",
4646
"react-dom": "18.3.1",
4747
"rollup": "4.24.0",
4848
"rollup-plugin-postcss": "4.0.2",
4949
"tslib": "2.7.0",
50-
"typescript": "5.6.2",
50+
"typescript": "5.6.3",
5151
"typescript-eslint": "8.8.1",
5252
"vitest": "2.1.2"
5353
}

public/build/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/app.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/viewers/ParquetView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export default function ParquetView({ file, setProgress, setError }: ViewerProps
3737
setProgress(0.33)
3838
const asyncBuffer = await asyncBufferFrom(url)
3939
setProgress(0.66)
40-
const dataframe = await parquetDataFrame(asyncBuffer)
41-
const cached = rowCache(dataframe)
40+
let dataframe = await parquetDataFrame(asyncBuffer)
41+
// dataframe = rowCache(dataframe)
4242
const fileSize = asyncBuffer.byteLength
43-
setContent({ dataframe: cached, fileSize })
43+
setContent({ dataframe, fileSize })
4444
} catch (error) {
4545
setError(error as Error)
4646
} finally {

0 commit comments

Comments
 (0)