Skip to content

Commit

Permalink
chore: Upgrade icelake version (#11962)
Browse files Browse the repository at this point in the history
  • Loading branch information
liurenjie1024 authored Aug 30, 2023
1 parent 38687a1 commit c69837f
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 130 deletions.
147 changes: 31 additions & 116 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ hashbrown = { version = "0.14.0", features = ["ahash", "inline-more", "nightly"]
criterion = { version = "0.5", features = ["async_futures"] }
tonic = { package = "madsim-tonic", version = "0.3.1" }
tonic-build = { package = "madsim-tonic-build", version = "0.3.1" }
icelake = { git = "https://github.com/icelake-io/icelake", rev = "ec7d251e5e6db0673cea35edd62e6c7df81c4759" }
icelake = { git = "https://github.com/icelake-io/icelake", rev = "a6790d17094754959e351fac1e11147e37643e97" }
arrow-array = "46"
arrow-schema = "46"
arrow-buffer = "46"
arrow-flight = "46"
arrow-select = "46"

risingwave_backup = { path = "./src/storage/backup" }
risingwave_batch = { path = "./src/batch" }
Expand Down
6 changes: 3 additions & 3 deletions src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ normal = ["workspace-hack"]
[dependencies]
anyhow = "1"
arc-swap = "1"
arrow-array = "45"
arrow-buffer = "45"
arrow-schema = "45"
arrow-array = { workspace = true }
arrow-buffer = { workspace = true }
arrow-schema = { workspace = true }
async-trait = "0.1"
auto_enums = "0.8"
bitflags = "2"
Expand Down
2 changes: 1 addition & 1 deletion src/common/src/array/arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ impl TryFrom<&DataType> for arrow_schema::DataType {
DataType::Timestamp => Ok(Self::Timestamp(arrow_schema::TimeUnit::Microsecond, None)),
DataType::Timestamptz => Ok(Self::Timestamp(
arrow_schema::TimeUnit::Microsecond,
Some("UTC".into()),
Some("+00:00".into()),
)),
DataType::Time => Ok(Self::Time64(arrow_schema::TimeUnit::Microsecond)),
DataType::Interval => Ok(Self::Interval(arrow_schema::IntervalUnit::MonthDayNano)),
Expand Down
4 changes: 2 additions & 2 deletions src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ apache-avro = { git = "https://github.com/risingwavelabs/avro", branch = "idx0de
"bzip",
"xz",
] }
arrow-array = "45"
arrow-schema = "45"
arrow-array = { workspace = true }
arrow-schema = { workspace = true }
async-trait = "0.1"
auto_enums = { version = "0.8", features = ["futures03"] }
auto_impl = "1"
Expand Down
4 changes: 2 additions & 2 deletions src/expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ normal = ["workspace-hack", "ctor"]
[dependencies]
aho-corasick = "1"
anyhow = "1"
arrow-array = "45"
arrow-schema = "45"
arrow-array = { workspace = true }
arrow-schema = { workspace = true }
async-trait = "0.1"
auto_enums = "0.8"
await-tree = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ normal = ["workspace-hack"]
[dependencies]
anyhow = "1"
arc-swap = "1"
arrow-schema = "45"
arrow-schema = { workspace = true }
async-recursion = "1.0.4"
async-trait = "0.1"
auto_enums = { version = "0.8", features = ["futures03"] }
Expand Down
8 changes: 4 additions & 4 deletions src/udf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ ignored = ["workspace-hack"]
normal = ["workspace-hack"]

[dependencies]
arrow-array = "45"
arrow-flight = "45"
arrow-schema = "45"
arrow-select = "45"
arrow-array = { workspace = true }
arrow-flight = { workspace = true }
arrow-schema = { workspace = true }
arrow-select = { workspace = true }
futures-util = "0.3.28"
static_assertions = "1"
thiserror = "1"
Expand Down

0 comments on commit c69837f

Please sign in to comment.