Skip to content

Commit

Permalink
Fix: Column compression default snappy
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Nov 2, 2022
1 parent 1af728a commit b83442d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## 0.13.3 (next)
## 0.13.3

* Fix: Fixed an issue there setting the `--column-compression-default` to `snappy` did result in the column compression default actually being set to `zstd`.

## 0.13.2

Expand Down
2 changes: 1 addition & 1 deletion src/enum_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl CompressionVariants {
CompressionVariants::Lz4 => Compression::LZ4,
CompressionVariants::Lz0 => Compression::LZO,
CompressionVariants::Zstd => Compression::ZSTD,
CompressionVariants::Snappy => Compression::ZSTD,
CompressionVariants::Snappy => Compression::SNAPPY,
CompressionVariants::Brotli => Compression::BROTLI,
}
}
Expand Down

0 comments on commit b83442d

Please sign in to comment.