Skip to content

Commit

Permalink
feat(insert_all): Add GZIP support for the insert_all method.
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Jul 8, 2024
1 parent b245d66 commit 107a555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ All notable changes to this project will be documented in this file.
- Add partial support for BigQuery Storage Write API (by @imor).
- append_rows
- get_write_stream
- Add GZIP support for `insert_all` (by @Deniskore). The `gzip` feature is included by default.
See https://github.com/lquerel/gcp-bigquery-client/issues/74 for more information.

Breaking changes:
- Client::from_authenticator is now async.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["gcp", "bigquery", "google-cloud"]
categories = ["database"]

[features]
default = ["rust-tls", "ring"]
default = ["rust-tls", "ring", "gzip"]
native-tls = ["reqwest/native-tls"]
rust-tls = ["reqwest/rustls-tls"]
ring = ["yup-oauth2/ring"]
Expand Down

0 comments on commit 107a555

Please sign in to comment.