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 4f4ebd1 commit 8a62ecaCopy full SHA for 8a62eca
crates/duckdb/src/types/mod.rs
@@ -117,7 +117,7 @@ impl From<&DataType> for Type {
117
DataType::UInt32 => Self::UInt,
118
DataType::UInt64 => Self::UBigInt,
119
// DataType::Float16 => Self::Float16,
120
- // DataType::Float32 => Self::Float32,
+ DataType::Float32 => Self::Float, // Single precision (4 bytes)
121
DataType::Float64 => Self::Double, // Double precision (8 bytes)
122
DataType::Timestamp(_, _) => Self::Timestamp,
123
DataType::Date32 => Self::Date32,
0 commit comments