1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use super::ParseExpression;
#[derive(Clone, Debug)]
pub enum ParseTree {
CreateTable(RawCreateTableCommand),
Insert(RawInsertCommand),
Select(RawSelectCommand),
}
#[derive(Clone, Debug)]
pub struct RawCreateTableCommand {
pub table_name: String,
pub provided_columns: Vec<RawColumn>,
}
#[derive(Clone, Debug, PartialEq)]
pub struct RawColumn {
pub name: String,
pub sql_type: String,
pub null: bool,
}
#[derive(Clone, Debug, PartialEq)]
pub struct RawInsertCommand {
pub table_name: String,
pub provided_columns: Option<Vec<String>>,
pub provided_values: Vec<ParseExpression>,
}
#[derive(Clone, Debug, PartialEq)]
pub struct RawSelectCommand {
pub columns: Vec<String>,
pub table: String,
}