Skip to content

Commit 1f577b1

Browse files
dependabot[bot]lutter
authored andcommitted
build(deps): bump arrow, arrow-flight, and parquet from 58.3.0 to 59.0.0
Bumps [arrow-flight](https://github.com/apache/arrow-rs) from 58.3.0 to 59.0.0. Bumps [parquet](https://github.com/apache/arrow-rs) from 58.3.0 to 59.0.0. Bumps [arrow](https://github.com/apache/arrow-rs) from 58.3.0 to 59.0.0. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](apache/arrow-rs@58.3.0...59.0.0) --- updated-dependencies: - dependency-name: arrow-flight dependency-version: 59.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: arrow dependency-version: 59.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: parquet dependency-version: 59.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3f1d48b commit 1f577b1

3 files changed

Lines changed: 43 additions & 70 deletions

File tree

Cargo.lock

Lines changed: 36 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ url = "2.5.8"
121121

122122
# Dependencies related to Amp subgraphs
123123
ahash = "0.8.11"
124-
arrow = { version = "=58.3.0" }
125-
arrow-flight = { version = "=58.3.0", features = ["flight-sql-experimental"] }
126-
parquet = { version = "=58.3.0" }
124+
arrow = { version = "=59.0.0" }
125+
arrow-flight = { version = "=59.0.0", features = ["flight-sql-experimental"] }
126+
parquet = { version = "=59.0.0" }
127127
futures = "0.3.31"
128128
half = "2.7.1"
129129
indoc = "2.0.7"

graph/src/amp/codec/test_fixtures.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,10 @@ pub static BINARY_RECORD_BATCH: LazyLock<RecordBatch> = LazyLock::new(|| {
282282
vec![
283283
Arc::new(BinaryArray::from(vec![b"aa".as_ref(), b"bb", b"cc"])),
284284
Arc::new(BinaryViewArray::from(vec![b"aa".as_ref(), b"bb", b"cc"])),
285-
Arc::new(FixedSizeBinaryArray::from(vec![b"aa", b"bb", b"cc"])),
286-
Arc::new(FixedSizeBinaryArray::from(vec![
287-
&[10; 32], &[20; 32], &[30; 32],
288-
])),
285+
Arc::new(FixedSizeBinaryArray::try_from(vec![b"aa", b"bb", b"cc"]).unwrap()),
286+
Arc::new(
287+
FixedSizeBinaryArray::try_from(vec![&[10; 32], &[20; 32], &[30; 32]]).unwrap(),
288+
),
289289
Arc::new(LargeBinaryArray::from(vec![b"aa".as_ref(), b"bb", b"cc"])),
290290
],
291291
)

0 commit comments

Comments
 (0)