quill-sql 0.2.1

An educational Rust relational database (RDBMS) inspired by CMU 15445
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::catalog::SchemaRef;
use crate::expression::Expr;

#[derive(derive_new::new, Debug, Clone)]
pub struct Values {
    pub schema: SchemaRef,
    pub values: Vec<Vec<Expr>>,
}

impl std::fmt::Display for Values {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Values")
    }
}