Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed Aug 3, 2023
1 parent 6d5407b commit cf2257e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/iceberg/src/spec/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ pub enum Value {
Date(#[serde(with = "date")] NaiveDate),
/// Stores microseconds from midnight in an 8-byte little-endian long
Time(#[serde(with = "time")] NaiveTime),
/// Stores microseconds from 1970-01-01 00:00:00.000000 in an 8-byte little-endian long
/// Timestamp without timezone
Timestamp(#[serde(with = "timestamp")] NaiveDateTime),
/// Stores microseconds from 1970-01-01 00:00:00.000000 in an 8-byte little-endian long
/// Timestamp with timezone
TimestampTZ(#[serde(with = "timestamptz")] DateTime<Utc>),
/// UTF-8 bytes (without length)
String(String),
Expand Down

0 comments on commit cf2257e

Please sign in to comment.