Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add compression option ZSTD. #1890

Merged
merged 13 commits into from
Apr 11, 2024
Prev Previous commit
Next Next commit
Update tests/unit/job/test_extract.py
  • Loading branch information
tswast committed Apr 11, 2024
commit 594a2a9d47de819cc6743cfa6817abf144f843a4
2 changes: 1 addition & 1 deletion tests/unit/job/test_extract.py
Expand Up @@ -40,7 +40,7 @@ def test_to_api_repr(self):
import json
chalmerlowe marked this conversation as resolved.
Show resolved Hide resolved

config = self._make_one()
config.compression = job.Compression.SNAPPY.value
config.compression = job.Compression.SNAPPY
config.destination_format = job.DestinationFormat.AVRO
config.field_delimiter = "ignored for avro"
config.print_header = False
Expand Down