Module value_encoding

Source
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 a Serializer and a Deserializer for each schema of Row, which can be reused until schema changes
error

Structs§

BasicSerde
Wrap of the original Row serializing and deserializing function
BasicSerializer
Wrap of the original Row serializing function
EitherSerde
The type-erased ValueRowSerde, used for simplifying the code.

Enums§

ValueRowSerdeKind
The kind of all possible ValueRowSerde.

Traits§

DatumFromProtoExt
DatumToProtoExt
ValueRowDeserializer
Part of ValueRowSerde that implements deserialize bytes into a Row
ValueRowSerializer
Part of ValueRowSerde that implements serialize a Row 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

Type Aliases§

Result