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
moved json import statement
  • Loading branch information
chalmerlowe committed Apr 11, 2024
commit e685c2db0ffce158890a825b13b81861d0802def
2 changes: 1 addition & 1 deletion tests/unit/job/test_extract.py
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import json
from unittest import mock

from ..helpers import make_connection
Expand All @@ -37,7 +38,6 @@ def test_ctor_w_properties(self):

def test_to_api_repr(self):
from google.cloud.bigquery import job
import json

config = self._make_one()
config.compression = job.Compression.SNAPPY
Expand Down