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
revise datatype from Enum to object
  • Loading branch information
chalmerlowe committed Apr 8, 2024
commit b26a974acea38842b97d28b81a4cb40e68cdf646
2 changes: 1 addition & 1 deletion google/cloud/bigquery/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AutoRowIDs(enum.Enum):
GENERATE_UUID = enum.auto()


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

Expand Down