We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506d047 commit 4f4ebd1Copy full SHA for 4f4ebd1
crates/duckdb/src/types/mod.rs
@@ -118,7 +118,7 @@ impl From<&DataType> for Type {
118
DataType::UInt64 => Self::UBigInt,
119
// DataType::Float16 => Self::Float16,
120
// DataType::Float32 => Self::Float32,
121
- DataType::Float64 => Self::Float,
+ DataType::Float64 => Self::Double, // Double precision (8 bytes)
122
DataType::Timestamp(_, _) => Self::Timestamp,
123
DataType::Date32 => Self::Date32,
124
// DataType::Date64 => Self::Date64,
0 commit comments