Skip to content

Commit

Permalink
chore: depend directly on snowflake lib
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed Apr 26, 2024
1 parent 22d095f commit da4e367
Show file tree
Hide file tree
Showing 20 changed files with 131 additions and 3,067 deletions.
723 changes: 123 additions & 600 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion rust/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ indicatif = "0.17"
gcp-bigquery-client = "0.18"
prost = "0.12"
google-cloud-auth = { version = "0.14", default-features = false, features = ["external-account", "rustls-tls"] }
snowflake-api = { path = "../snowflake-api" }
arrow-array = "51"
duckdb = { version = "0.10", features = ["bundled"] }
regex = "1.10.4"
Expand Down
10 changes: 7 additions & 3 deletions rust/quary-databases/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ async-trait = "0.1"
gcp-bigquery-client = "0.18"
prost = "0.12"
google-cloud-auth = { version = "0.14", default-features = false, features = ["external-account", "rustls-tls"] }
snowflake-api = { path = "../snowflake-api" }
arrow-array = "51"
duckdb = { version = "0.10", features = ["bundled"] }
regex = "1.10.4"
chrono = "0.4"

duckdb = { version = "0.10", features = ["bundled"] }
arrow_array_51 = { package = "arrow-array", version = "51" }

snowflake-api = "0.7.0"
arrow_array_50 = { package = "arrow-array", version = "50" }


[dev-dependencies]
assert_cmd = "2"
tempfile = "3"
Expand Down
2 changes: 1 addition & 1 deletion rust/quary-databases/src/databases_snowflake.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use arrow_array::array;
use arrow_array_50::{array, ArrayRef};

Check warning on line 1 in rust/quary-databases/src/databases_snowflake.rs

View workflow job for this annotation

GitHub Actions / Rust Lint

unused import: `ArrayRef`

Check warning on line 1 in rust/quary-databases/src/databases_snowflake.rs

View workflow job for this annotation

GitHub Actions / Rust Test

unused import: `ArrayRef`
use async_trait::async_trait;
use quary_core::database_snowflake::{
validate_snowfalke_account_identifier, DatabaseQueryGeneratorSnowflake,
Expand Down
52 changes: 0 additions & 52 deletions rust/snowflake-api/Cargo.toml

This file was deleted.

201 changes: 0 additions & 201 deletions rust/snowflake-api/LICENSE

This file was deleted.

82 changes: 0 additions & 82 deletions rust/snowflake-api/README.md

This file was deleted.

Loading

0 comments on commit da4e367

Please sign in to comment.