Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: annotate precision and length to primitive types #270

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/iceberg/src/spec/datatypes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ pub enum PrimitiveType {
},
/// Calendar date without timezone or time.
Date,
/// Time of day without date or timezone.
/// Time of day in microsecond precision, without date or timezone.
Time,
/// Timestamp without timezone
/// Timestamp in microsecond precision, without timezone
Timestamp,
/// Timestamp with timezone
/// Timestamp in microsecond precision, with timezone
Timestamptz,
/// Arbitrary-length character sequences encoded in utf-8
String,
/// Universally Unique Identifiers
/// Universally Unique Identifiers, should use 16-byte fixed
Uuid,
/// Fixed length byte array
Fixed(u64),
Expand Down
Loading