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(sink): support bigquery sink upsert #15780

Merged
merged 16 commits into from
Apr 26, 2024
115 changes: 103 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ futures = { version = "0.3", default-features = false, features = ["alloc"] }
futures-async-stream = { workspace = true }
gcp-bigquery-client = "0.18.0"
glob = "0.3"
google-cloud-bigquery = { version = "0.7.0", features = ["auth"] }
google-cloud-gax = "0.17.0"
google-cloud-googleapis = "0.12.0"
google-cloud-pubsub = "0.23"
http = "0.2"
hyper = { version = "0.14", features = [
Expand Down
1 change: 1 addition & 0 deletions src/connector/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#![feature(try_blocks)]
#![feature(error_generic_member_access)]
#![feature(register_tool)]
#![feature(assert_matches)]
#![register_tool(rw)]
#![recursion_limit = "256"]

Expand Down
Loading
Loading