Skip to content

Commit

Permalink
choose delta-rs rev that use arrow 47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsofun committed Dec 7, 2023
1 parent 31edb4e commit f7f6b83
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
8 changes: 3 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion src/query/sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ common-pipeline-transforms = { path = "../pipeline/transforms" }
common-profile = { path = "../profile" }
common-settings = { path = "../settings" }
common-storage = { path = "../../common/storage" }
common-storages-delta= { path = "../storages/delta" }
common-storages-delta = { path = "../storages/delta" }
common-storages-iceberg = { path = "../storages/iceberg" }
common-storages-parquet = { path = "../storages/parquet" }
common-storages-result-cache = { path = "../storages/result_cache" }
Expand Down
13 changes: 3 additions & 10 deletions src/query/storages/delta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,21 @@ common-base = { path = "../../../common/base" }
common-catalog = { path = "../../catalog" }
common-exception = { path = "../../../common/exception" }
common-expression = { path = "../../expression" }
common-functions = { path = "../../functions" }
common-meta-app = { path = "../../../meta/app" }
common-meta-types = { path = "../../../meta/types" }
common-pipeline-core = { path = "../../pipeline/core" }
common-storage = { path = "../../../common/storage" }
common-storages-parquet = { path = "../parquet" }
storages-common-pruner = { path = "../common/pruner" }
storages-common-table-meta = { path = "../common/table_meta" }

arrow-schema = { workspace = true }
async-backtrace = { workspace = true }
async-trait = { version = "0.1.57", package = "async-trait-fn" }
bytes = {workspace = true}
chrono = { workspace = true }
#deltalake = "0.16.5"
deltalake = { path = "../../../../../delta-rs/crates/deltalake" }
# deltalake = { git = "https://github.com/delta-io/delta-rs", rev = "93053a1" }
bytes = { workspace = true }
deltalake = { git = "https://github.com/delta-io/delta-rs", rev = "44a3760" }
futures = "0.3"
match-template = "0.0.1"
minitrace = { workspace = true }
opendal = { workspace = true }
object_store = "0.7"
opendal = { workspace = true }
parquet = { workspace = true }
serde = { workspace = true }
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion src/query/storages/factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ common-catalog = { path = "../../catalog" }
common-config = { path = "../../config" }
common-exception = { path = "../../../common/exception" }
common-meta-app = { path = "../../../meta/app" }
common-storages-delta= { path = "../delta" }
common-storages-delta = { path = "../delta" }
common-storages-fuse = { path = "../fuse" }
common-storages-iceberg = { path = "../iceberg" }
common-storages-memory = { path = "../memory" }
Expand Down

0 comments on commit f7f6b83

Please sign in to comment.