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.
Timestamp
1 parent 13609e9 commit 6cdaba2Copy full SHA for 6cdaba2
vortex-duckdb/src/convert/types/to.rs
@@ -77,6 +77,7 @@ pub fn ext_to_duckdb(ext_dtype: &ExtDType) -> LogicalTypeHandle {
77
}
78
match time_unit {
79
TimeUnit::Ns => LogicalTypeHandle::from(LogicalTypeId::TimestampNs),
80
+ TimeUnit::Us => LogicalTypeHandle::from(LogicalTypeId::Timestamp),
81
TimeUnit::Ms => LogicalTypeHandle::from(LogicalTypeId::TimestampMs),
82
TimeUnit::S => LogicalTypeHandle::from(LogicalTypeId::TimestampS),
83
_ => {
0 commit comments