reifydb-codec 0.8.1

Unified encoding and decoding for all ReifyDB values, frames, rows, keys, and boundaries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB

use reifydb_value::value::{container::utf8::Utf8Container, frame::data::FrameColumnData};

fn make(v: Vec<String>) -> FrameColumnData {
	FrameColumnData::Utf8(Utf8Container::new(v))
}

crate::plain_tests! {
	typical: vec!["hello".to_string(), "world".to_string(), "".to_string(), "unicode: 日本語".to_string()],
	boundary: vec!["".to_string(), "a".to_string(), "x".repeat(255)],
	single: "test".to_string(),
}