Skip to content
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
4 changes: 2 additions & 2 deletions crates/iceberg/src/spec/values/primitive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ pub enum PrimitiveLiteral {
String(String),
/// Binary value (without length)
Binary(Vec<u8>),
/// Stored as 16-byte little-endian
/// Stored as 16-byte big-endian
Int128(i128),
/// Stored as 16-byte little-endian
/// Stored as 16-byte big-endian
UInt128(u128),
/// When a number is larger than it can hold
AboveMax,
Expand Down
Loading