Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
chore: allow depending on arrow and parquet v46 (#162)
Browse files Browse the repository at this point in the history
Signed-off-by: Runji Wang <[email protected]>
  • Loading branch information
wangrunji0408 authored Aug 28, 2023
1 parent aeba46c commit 50bdfc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ members = [
anyhow = "1"
async-trait = "0.1"
apache-avro = { version = "0.15", features = ["derive"] }
arrow = { version = ">=40, <46" }
arrow = { version = ">=40, <47" }
bytes = "1"
opendal = ">=0.37, <0.40"
uuid = { version = "1", features = ["v4"] }
serde = "1"
serde_json = "1"
serde_with = "3"
tokio = { version = "1.28", features = ["full"] }
parquet = { version = ">=40, <46", features = ["async"] }
parquet = { version = ">=40, <47", features = ["async"] }
rust_decimal = "1.30"
chrono = "0.4"
faster-hex = "0.8.0"
Expand Down
5 changes: 1 addition & 4 deletions icelake/tests/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,7 @@ impl TestFixture<'_> {
self.spark_connect_url(),
"--sql".to_string(),
];
let args: Vec<String> = args
.into_iter()
.chain(self.init_sqls.clone().into_iter())
.collect();
let args: Vec<String> = args.into_iter().chain(self.init_sqls.clone()).collect();
self.poetry.run_file(
"init.py",
args,
Expand Down

0 comments on commit 50bdfc9

Please sign in to comment.