-
Here is a quote from the postgres documentation: https://www.postgresql.org/docs/16/datatype-datetime.html time, timestamp, and interval accept an optional precision value p which specifies the number of fractional digits retained in the seconds field. By default, there is no explicit bound on precision. The allowed range of p is from 0 to 6. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
On SQL frontend layer, only datafusion/datafusion/sql/src/planner.rs Lines 457 to 469 in 18b2aaa Other timestamp types are accessible via datafusion/datafusion/sqllogictest/test_files/timestamps.slt Lines 36 to 46 in a2e5330 I think we should add SQL-level |
Beta Was this translation helpful? Give feedback.
On SQL frontend layer, only
timestamp
is currently supported and is synonymous to timestamp(9):datafusion/datafusion/sql/src/planner.rs
Lines 457 to 469 in 18b2aaa