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 6761ecd commit 4667ec0Copy full SHA for 4667ec0
crates/duckdb/src/types/value.rs
@@ -43,6 +43,10 @@ pub enum Value {
43
/// The value is a blob of data
44
Blob(Vec<u8>),
45
/// The value is a date32
46
+ ///
47
+ /// The `i32` represents the number of days since the Unix epoch (1970-01-01).
48
49
+ /// Enable the `chrono` feature for easy conversion to proper date types like `NaiveDate`.
50
Date32(i32),
51
/// The value is a time64
52
Time64(TimeUnit, i64),
0 commit comments