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
updates Compression class
  • Loading branch information
chalmerlowe committed Apr 10, 2024
commit 867e5bc89d24daf48f016100f7467611477d95c4
2 changes: 1 addition & 1 deletion google/cloud/bigquery/enums.py
Expand Up @@ -22,7 +22,7 @@ class AutoRowIDs(enum.Enum):
GENERATE_UUID = enum.auto()


class Compression(enum.Enum):
class Compression(str, enum.Enum):
"""The compression type to use for exported files. The default value is
:attr:`NONE`.

Expand Down