pub(crate) mod namespace {
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 NAME: usize = 1;
pub(crate) const PARENT_ID: usize = 2;
pub(crate) const GRPC: usize = 3;
pub(crate) const LOCAL_NAME: usize = 4;
pub(crate) const TOKEN: usize = 5;
pub(crate) static SHAPE: Lazy<RowShape> = Lazy::new(|| {
RowShape::new(vec![
RowShapeField::unconstrained("id", Type::Uint8),
RowShapeField::unconstrained("name", Type::Utf8),
RowShapeField::unconstrained("parent_id", Type::Uint8),
RowShapeField::unconstrained("grpc", Type::Utf8),
RowShapeField::unconstrained("local_name", Type::Utf8),
RowShapeField::unconstrained("token", Type::Utf8),
])
});
}