Skip to content

Commit

Permalink
build: Upgrade Arrow, Parquet and Object Store (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers authored Jul 10, 2023
2 parents 02144bd + a27b61e commit 0591468
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 55 deletions.
105 changes: 65 additions & 40 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ license = "Apache-2.0"
ahash = "0.8.3"
anyhow = { version = "1.0.70", features = ["backtrace"] }
approx = "0.5.1"
arrow = { version = "42.0.0" }
arrow-arith = { version = "42.0.0" }
arrow-array = { version = "42.0.0" }
arrow-buffer = { version = "42.0.0" }
arrow-cast = { version = "42.0.0" }
arrow-csv = { version = "42.0.0" }
arrow-data = { version ="42.0.0" }
arrow-json = { version = "42.0.0" }
arrow-ord = { version = "42.0.0" }
arrow-schema = { version = "42.0.0", features = ["serde"] }
arrow-select = { version = "42.0.0" }
arrow-string = { version = "42.0.0" }
arrow = { version = "43.0.0" }
arrow-arith = { version = "43.0.0" }
arrow-array = { version = "43.0.0" }
arrow-buffer = { version = "43.0.0" }
arrow-cast = { version = "43.0.0" }
arrow-csv = { version = "43.0.0" }
arrow-data = { version ="43.0.0" }
arrow-json = { version = "43.0.0" }
arrow-ord = { version = "43.0.0" }
arrow-schema = { version = "43.0.0", features = ["serde"] }
arrow-select = { version = "43.0.0" }
arrow-string = { version = "43.0.0" }
async-once-cell = "0.3.1"
async-stream = "0.3.4"
async-trait = "0.1.68"
Expand Down Expand Up @@ -74,12 +74,12 @@ lz4 = "1.24.0"
lz4-sys = "1.9.4"
num = "0.4.0"
num-traits = "0.2.15"
object_store = { version = "0.5.5", features = ["aws", "gcp"] }
object_store = { version = "0.6.1", features = ["aws", "gcp"] }
once_cell = "1.17.1"
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
opentelemetry-otlp = "0.11.0"
owning_ref = "0.4.1"
parquet = { version = "42.0.0", features = ["async"] }
parquet = { version = "43.0.0", features = ["async"] }
parse-display = "0.8.0"
pin-project = "1.0.12"
postcard = { version = "1.0.4", features = ["use-std"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sparrow-main/tests/e2e/notebooks/sample_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ async fn test_sample_events_to_parquet() {
.unwrap();

assert_eq!(no_simplifier, simplifier);
insta::assert_snapshot!(simplifier, @"5221E4B892273127EB53EE040EA65ACF548648AA317C72B16A95E70E")
insta::assert_snapshot!(simplifier, @"C4EDACE415EE29FDD330508491AF9D6248905E60D0CC722751F9117D")
}

0 comments on commit 0591468

Please sign in to comment.