Skip to content

Commit 4f4ebd1

Browse files
mlafeldtMaxxen
authored andcommitted
Convert Arrow Float64 to DuckDB DOUBLE
1 parent 506d047 commit 4f4ebd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/duckdb/src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl From<&DataType> for Type {
118118
DataType::UInt64 => Self::UBigInt,
119119
// DataType::Float16 => Self::Float16,
120120
// DataType::Float32 => Self::Float32,
121-
DataType::Float64 => Self::Float,
121+
DataType::Float64 => Self::Double, // Double precision (8 bytes)
122122
DataType::Timestamp(_, _) => Self::Timestamp,
123123
DataType::Date32 => Self::Date32,
124124
// DataType::Date64 => Self::Date64,

0 commit comments

Comments
 (0)