Expand description
Value encoding is an encoding format which converts the data into a binary form (not memcomparable, i.e., Key encoding).
Modules§
- column_
aware_ row_ encoding - Column-aware row encoding is an encoding format which converts row into a binary form that
remains explanable after schema changes
Current design of flag just contains 1 meaningful information: the 2 LSBs represents
the size of offsets:
u8
/u16
/u32
We have aSerializer
and aDeserializer
for each schema ofRow
, which can be reused until schema changes - error
Structs§
- Basic
Serde - Wrap of the original
Row
serializing and deserializing function - Basic
Serializer - Wrap of the original
Row
serializing function - Either
Serde - The type-erased
ValueRowSerde
, used for simplifying the code.
Enums§
- Value
RowSerde Kind - The kind of all possible
ValueRowSerde
.
Traits§
- Datum
From Proto Ext - Datum
ToProto Ext - Value
RowDeserializer - Part of
ValueRowSerde
that implementsdeserialize
bytes into aRow
- Value
RowSerializer - Part of
ValueRowSerde
that implementsserialize
aRow
into bytes
Functions§
- deserialize_
bool 🔒 - deserialize_
bytea 🔒 - deserialize_
date 🔒 - deserialize_
datum - Deserialize bytes into a datum (Not order guarantee, used in value encoding).
- deserialize_
decimal 🔒 - deserialize_
int256 🔒 - deserialize_
interval 🔒 - deserialize_
list 🔒 - deserialize_
str 🔒 - deserialize_
struct 🔒 - deserialize_
time 🔒 - deserialize_
timestamp 🔒 - deserialize_
value 🔒 - estimate_
serialize_ 🔒date_ size - estimate_
serialize_ datum_ size - estimate_
serialize_ 🔒decimal_ size - estimate_
serialize_ 🔒interval_ size - estimate_
serialize_ 🔒list_ size - estimate_
serialize_ 🔒scalar_ size - estimate_
serialize_ 🔒str_ size - estimate_
serialize_ 🔒struct_ size - estimate_
serialize_ 🔒time_ size - estimate_
serialize_ 🔒timestamp_ size - inner_
deserialize_ 🔒datum - serialize_
date 🔒 - serialize_
datum - Serialize a datum into bytes and return (Not order guarantee, used in value encoding).
- serialize_
datum_ into - Serialize a datum into bytes (Not order guarantee, used in value encoding).
- serialize_
decimal 🔒 - serialize_
interval 🔒 - serialize_
list 🔒 - serialize_
scalar 🔒 - serialize_
str 🔒 - serialize_
struct 🔒 - serialize_
time 🔒 - serialize_
timestamp 🔒 - try_
get_ exact_ serialize_ datum_ size