quill_sql/plan/logical_plan/
values.rs

1use crate::catalog::SchemaRef;
2use crate::expression::Expr;
3
4#[derive(derive_new::new, Debug, Clone)]
5pub struct Values {
6    pub schema: SchemaRef,
7    pub values: Vec<Vec<Expr>>,
8}
9
10impl std::fmt::Display for Values {
11    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
12        write!(f, "Values")
13    }
14}