#[derive(Debug, Clone, PartialEq)]
pub enum ASTNode {
SQLIdentifier(String),
SQLWildcard,
SQLCompoundIdentifier(Vec<String>),
SQLAssignment(String, Box<ASTNode>),
SQLIsNull(Box<ASTNode>),
SQLIsNotNull(Box<ASTNode>),
SQLBinaryExpr {
left: Box<ASTNode>,
op: SQLOperator,
right: Box<ASTNode>,
},
SQLCast {
expr: Box<ASTNode>,
data_type: SQLType,
},
SQLNested(Box<ASTNode>),
SQLUnary {
operator: SQLOperator,
rex: Box<ASTNode>,
},
SQLLiteralLong(i64),
SQLLiteralDouble(f64),
SQLLiteralString(String),
SQLFunction {
id: String,
args: Vec<ASTNode>,
},
SQLOrderBy {
expr: Box<ASTNode>,
asc: bool,
},
SQLSelect {
projection: Vec<ASTNode>,
relation: Option<Box<ASTNode>>,
selection: Option<Box<ASTNode>>,
order_by: Option<Vec<ASTNode>>,
group_by: Option<Vec<ASTNode>>,
having: Option<Box<ASTNode>>,
limit: Option<Box<ASTNode>>,
},
SQLInsert {
table_name: String,
columns: Vec<String>,
values: Vec<Vec<ASTNode>>,
},
SQLUpdate {
table_name: String,
columns: Vec<String>,
values: Vec<ASTNode>,
selection: Option<Box<ASTNode>>,
},
SQLDelete {
relation: Option<Box<ASTNode>>,
selection: Option<Box<ASTNode>>,
order_by: Option<Vec<ASTNode>>,
limit: Option<Box<ASTNode>>,
},
SQLCreateTable {
name: String,
columns: Vec<SQLColumnDef>,
},
}
#[derive(Debug, Clone, PartialEq)]
pub struct SQLColumnDef {
pub name: String,
pub data_type: SQLType,
pub allow_null: bool,
}
#[derive(Debug, Clone, PartialEq)]
pub enum SQLType {
Char(usize),
Varchar(usize),
Clob(usize),
Binary(usize),
Varbinary(usize),
Blob(usize),
Decimal(usize, Option<usize>),
SmallInt,
Int,
BigInt,
Float(Option<usize>),
Real,
Double,
Boolean,
Date,
Time,
Timestamp,
}
#[derive(Debug, PartialEq, Clone)]
pub enum SQLOperator {
Plus,
Minus,
Multiply,
Divide,
Modulus,
Gt,
Lt,
GtEq,
LtEq,
Eq,
NotEq,
And,
Or,
}