pub(crate) mod column_property {
use once_cell::sync::Lazy;
use reifydb_core::encoded::shape::{RowShape, RowShapeField};
use reifydb_type::value::r#type::Type;
pub(crate) const ID: usize = 0;
pub(crate) const COLUMN: usize = 1;
pub(crate) const POLICY: usize = 2;
pub(crate) const VALUE: usize = 3;
pub(crate) static SHAPE: Lazy<RowShape> = Lazy::new(|| {
RowShape::new(vec![
RowShapeField::unconstrained("id", Type::Uint8),
RowShapeField::unconstrained("column", Type::Uint8),
RowShapeField::unconstrained("policy", Type::Uint1),
RowShapeField::unconstrained("value", Type::Uint1),
])
});
}