Skip to content

Commit

Permalink
feat: add zstd support to arrow backend
Browse files Browse the repository at this point in the history
Fixes #90
  • Loading branch information
dvirtz committed Oct 13, 2023
1 parent 9031910 commit 195a688
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"kbajalc",
"prebuilds",
"tempy",
"Yitzchaki"
"Yitzchaki",
"zstd"
],
"ignorePaths": [
"**/node_modules/**",
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ node_modules
# addon
build/
prebuilds/

# python
.venv/
1 change: 1 addition & 0 deletions packages/parquet-reader/conanfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ arrow/*:with_snappy=True
arrow/*:with_boost=True
arrow/*:with_thrift=True
arrow/*:with_re2=True
arrow/*:with_zstd=True
3 changes: 2 additions & 1 deletion test/unit/backend.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ describe.each(BackendNames)("%s backend tests", (backendName) => {
'arrow': [
['small', 'small'],
['large', 'large.arrow'],
['version_2', 'version_2']
['version_2', 'version_2'],
['zstd', 'small']
]
};

Expand Down
Binary file added test/workspace/zstd.parquet
Binary file not shown.

0 comments on commit 195a688

Please sign in to comment.