lszskye opened a new pull request, #31: URL: https://github.com/apache/paimon-cpp/pull/31
### Purpose Introduce serialization infrastructure for Paimon's binary row format, including `BinaryRowSerializer`, `BinarySerializerUtils`, `RowCompactedSerializer`, and the `Blob` implementation. ### Changes #### `BinaryRowSerializer` - Serializes/deserializes `BinaryRow` #### `BinarySerializerUtils` - Utility class for converting `InternalRow`, `InternalArray`, `InternalMap` into their binary counterparts (`BinaryRow`, `BinaryArray`, `BinaryMap`) #### `RowCompactedSerializer` - Compact serialization format for `InternalRow`, using bitset-based null tracking and variable-length integer encoding - Provides `SerializeToBytes()` / `Deserialize()` for row-level serialization #### `Blob` - Implementation of `Blob` class for managing blob descriptors and blob data ### Tests - `BinaryRowSerializerTest` - `BinarySerializerUtilsTest` - `RowCompactedSerializerTest` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
