Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit b72fedc

Browse files
committed
arrow52 conversions
1 parent 88bc21c commit b72fedc

File tree

4 files changed

+83
-18
lines changed

4 files changed

+83
-18
lines changed

Cargo.lock

+77-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ ahash = "0.8"
113113
memchr = { version = "2.6", optional = true }
114114

115115
# Support conversion to/from arrow-rs
116-
arrow-buffer = { version = ">=40", optional = true }
117-
arrow-schema = { version = ">=40", optional = true }
118-
arrow-data = { version = ">=40", optional = true }
119-
arrow-array = { version = ">=40", optional = true }
116+
arrow-buffer = { version = ">=52", optional = true }
117+
arrow-schema = { version = ">=52", optional = true }
118+
arrow-data = { version = ">=52", optional = true }
119+
arrow-array = { version = ">=52", optional = true }
120120

121121
[target.wasm32-unknown-unknown.dependencies]
122122
getrandom = { version = "0.2", features = ["js"] }

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.76"
2+
channel = "1.78"

src/datatypes/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ impl From<DataType> for arrow_schema::DataType {
275275
DataType::Decimal(precision, scale) => Self::Decimal128(precision as _, scale as _),
276276
DataType::Decimal256(precision, scale) => Self::Decimal256(precision as _, scale as _),
277277
DataType::Extension(_, d, _) => Arc::unwrap_or_clone_polyfill(d).into(),
278+
_ => unimplemented!("TODO"),
278279
}
279280
}
280281
}

0 commit comments

Comments
 (0)