#[derive(Debug, Clone, PartialEq)]
pub enum FileType {
CSV,
NdJson,
Parquet,
}
#[derive(Debug, Clone, PartialEq)]
pub enum ASTNode {
SQLIdentifier(String),
SQLWildcard,
SQLCompoundIdentifier(Vec<String>),
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>>,
},
SQLCreateTable {
name: String,
columns: Vec<SQLColumnDef>,
file_type: FileType,
header_row: bool,
location: String,
},
}
#[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 {
Boolean,
UInt8,
UInt16,
UInt32,
UInt64,
Int8,
Int16,
Int32,
Int64,
Float32,
Double64,
Utf8(usize),
}
#[derive(Debug, PartialEq, Clone)]
pub enum SQLOperator {
Plus,
Minus,
Multiply,
Divide,
Modulus,
Gt,
Lt,
GtEq,
LtEq,
Eq,
NotEq,
And,
Or,
}