| 265 | void EncodeNull(uint8_t** encoded_bytes) override {} |
| 266 | |
| 267 | Result<std::shared_ptr<ArrayData>> Decode(uint8_t** encoded_bytes, int32_t length, |
| 268 | MemoryPool* pool) override { |
| 269 | return ArrayData::Make(null(), length, {NULLPTR}, length); |
| 270 | } |
| 271 | }; |
| 272 | |
| 273 | /// RowEncoder encodes ExecSpan to a variable length byte sequence |
no test coverage detected