Skip to content

Commit 88eaa65

Browse files
committed
DF 50 is finally released
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent eb469f8 commit 88eaa65

File tree

3 files changed

+77
-46
lines changed

3 files changed

+77
-46
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ crossbeam-deque = "0.8.6"
8686
crossbeam-queue = "0.3.12"
8787
crossterm = "0.29"
8888
dashmap = "6.1.0"
89-
datafusion = { version = "50", default-features = false, git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
90-
datafusion-catalog = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
91-
datafusion-common = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
92-
datafusion-common-runtime = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
93-
datafusion-datasource = { version = "50", default-features = false, git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
94-
datafusion-execution = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
95-
datafusion-expr = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
96-
datafusion-physical-expr = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
97-
datafusion-physical-expr-adapter = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
98-
datafusion-physical-expr-common = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
99-
datafusion-physical-plan = { version = "50", git = "https://github.com/apache/datafusion.git", branch = "branch-50" }
89+
datafusion = { version = "50", default-features = false }
90+
datafusion-catalog = { version = "50" }
91+
datafusion-common = { version = "50" }
92+
datafusion-common-runtime = { version = "50" }
93+
datafusion-datasource = { version = "50", default-features = false }
94+
datafusion-execution = { version = "50" }
95+
datafusion-expr = { version = "50" }
96+
datafusion-physical-expr = { version = "50" }
97+
datafusion-physical-expr-adapter = { version = "50" }
98+
datafusion-physical-expr-common = { version = "50" }
99+
datafusion-physical-plan = { version = "50" }
100100
dirs = "6.0.0"
101101
divan = { package = "codspeed-divan-compat", version = "3.0" }
102102
dyn-hash = "0.2.0"

vortex-dtype/src/arrow.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,13 @@ impl DType {
196196
let scale = dt.scale();
197197

198198
match precision {
199-
// DECIMAL32_MAX_PRECISION
200-
0..=9 => DataType::Decimal32(precision, scale),
201-
// DECIMAL64_MAX_PRECISION
202-
10..=18 => DataType::Decimal64(precision, scale),
199+
// This code is commented out until DataFusion improves its support for smaller decimals.
200+
// // DECIMAL32_MAX_PRECISION
201+
// 0..=9 => DataType::Decimal32(precision, scale),
202+
// // DECIMAL64_MAX_PRECISION
203+
// 10..=18 => DataType::Decimal64(precision, scale),
203204
// DECIMAL128_MAX_PRECISION
204-
19..=38 => DataType::Decimal128(precision, scale),
205+
0..=38 => DataType::Decimal128(precision, scale),
205206
// DECIMAL256_MAX_PRECISION
206207
39.. => DataType::Decimal256(precision, scale),
207208
}

0 commit comments

Comments
 (0)