multisql/utils/
plane.rs

1use crate::{Row, Value};
2
3pub(crate) type KeyedRow = (Value, Row);
4pub(crate) type Plane = Vec<KeyedRow>;