-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
224 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
//! This module exists to adapt the current parser to `sqlparser`. | ||
use crate::{ | ||
intermediate_ast::{ | ||
AliasedResultExpr, BinaryOperator as PoSqlBinaryOperator, Expression, Literal, | ||
OrderBy as PoSqlOrderBy, OrderByDirection, SelectResultExpr, SetExpression, | ||
TableExpression, UnaryOperator as PoSqlUnaryOperator, | ||
}, | ||
Identifier, ResourceId, SelectStatement, | ||
}; | ||
use alloc::{boxed::Box, string::ToString, vec}; | ||
use bigdecimal::BigDecimal; | ||
use sqlparser::ast::{ | ||
BinaryOperator, Expr, Function, FunctionArg, FunctionArgExpr, GroupByExpr, Ident, ObjectName, | ||
Offset, OffsetRows, OrderByExpr, Query, Select, SelectItem, SetExpr, TableFactor, | ||
TableWithJoins, UnaryOperator, Value, WildcardAdditionalOptions, | ||
}; | ||
|
||
/// Convert a number into a [`Expr`]. | ||
fn number<T>(val: T) -> Expr | ||
where | ||
T: Into<BigDecimal>, | ||
{ | ||
Expr::Value(Value::Number(val.into(), false)) | ||
} | ||
|
||
/// Convert an [`Identifier`] into a [`Expr`]. | ||
fn id(id: Identifier) -> Expr { | ||
Expr::Identifier(id.into()) | ||
} | ||
|
||
impl From<Identifier> for Ident { | ||
fn from(id: Identifier) -> Self { | ||
Ident::new(id.as_str()) | ||
} | ||
} | ||
|
||
impl From<ResourceId> for ObjectName { | ||
fn from(id: ResourceId) -> Self { | ||
ObjectName(vec![id.schema().into(), id.object_name().into()]) | ||
} | ||
} | ||
|
||
impl From<TableExpression> for TableFactor { | ||
fn from(table: TableExpression) -> Self { | ||
match table { | ||
TableExpression::Named { table, schema } => { | ||
let object_name = if let Some(schema) = schema { | ||
ObjectName(vec![schema.into(), table.into()]) | ||
} else { | ||
ObjectName(vec![table.into()]) | ||
}; | ||
TableFactor::Table { | ||
name: object_name, | ||
alias: None, | ||
args: None, | ||
with_hints: vec![], | ||
version: None, | ||
partitions: vec![], | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
impl From<Literal> for Value { | ||
fn from(literal: Literal) -> Self { | ||
match literal { | ||
Literal::VarChar(s) => Value::SingleQuotedString(s), | ||
Literal::BigInt(n) => Value::Number(BigDecimal::from(n), false), | ||
Literal::Int128(n) => Value::Number(BigDecimal::from(n), false), | ||
Literal::Decimal(n) => Value::Number(n, false), | ||
Literal::Boolean(b) => Value::Boolean(b), | ||
Literal::Timestamp(_ts) => todo!(), | ||
} | ||
} | ||
} | ||
|
||
impl From<PoSqlBinaryOperator> for BinaryOperator { | ||
fn from(op: PoSqlBinaryOperator) -> Self { | ||
match op { | ||
PoSqlBinaryOperator::And => BinaryOperator::And, | ||
PoSqlBinaryOperator::Or => BinaryOperator::Or, | ||
PoSqlBinaryOperator::Equal => BinaryOperator::Eq, | ||
PoSqlBinaryOperator::LessThanOrEqual => BinaryOperator::LtEq, | ||
PoSqlBinaryOperator::GreaterThanOrEqual => BinaryOperator::GtEq, | ||
PoSqlBinaryOperator::Add => BinaryOperator::Plus, | ||
PoSqlBinaryOperator::Subtract => BinaryOperator::Minus, | ||
PoSqlBinaryOperator::Multiply => BinaryOperator::Multiply, | ||
PoSqlBinaryOperator::Division => BinaryOperator::Divide, | ||
} | ||
} | ||
} | ||
|
||
impl From<PoSqlUnaryOperator> for UnaryOperator { | ||
fn from(op: PoSqlUnaryOperator) -> Self { | ||
match op { | ||
PoSqlUnaryOperator::Not => UnaryOperator::Not, | ||
} | ||
} | ||
} | ||
|
||
impl From<PoSqlOrderBy> for OrderByExpr { | ||
fn from(order_by: PoSqlOrderBy) -> Self { | ||
let asc = match order_by.direction { | ||
OrderByDirection::Asc => Some(true), | ||
OrderByDirection::Desc => Some(false), | ||
}; | ||
OrderByExpr { | ||
expr: id(order_by.expr), | ||
asc, | ||
nulls_first: None, | ||
} | ||
} | ||
} | ||
|
||
impl From<Expression> for Expr { | ||
fn from(expr: Expression) -> Self { | ||
match expr { | ||
Expression::Literal(literal) => Expr::Value(literal.into()), | ||
Expression::Column(identifier) => id(identifier), | ||
Expression::Unary { op, expr } => Expr::UnaryOp { | ||
op: op.into(), | ||
expr: Box::new((*expr).into()), | ||
}, | ||
Expression::Binary { op, left, right } => Expr::BinaryOp { | ||
left: Box::new((*left).into()), | ||
op: op.into(), | ||
right: Box::new((*right).into()), | ||
}, | ||
Expression::Wildcard => Expr::Wildcard, | ||
Expression::Aggregation { op, expr } => Expr::Function(Function { | ||
name: ObjectName(vec![Ident::new(op.to_string())]), | ||
args: vec![FunctionArg::Unnamed(FunctionArgExpr::Expr((*expr).into()))], | ||
filter: None, | ||
null_treatment: None, | ||
over: None, | ||
distinct: false, | ||
special: false, | ||
order_by: vec![], | ||
}), | ||
} | ||
} | ||
} | ||
|
||
impl From<SelectResultExpr> for SelectItem { | ||
fn from(select: SelectResultExpr) -> Self { | ||
match select { | ||
SelectResultExpr::ALL => SelectItem::Wildcard(WildcardAdditionalOptions { | ||
opt_exclude: None, | ||
opt_except: None, | ||
opt_rename: None, | ||
opt_replace: None, | ||
}), | ||
SelectResultExpr::AliasedResultExpr(AliasedResultExpr { expr, alias }) => { | ||
SelectItem::ExprWithAlias { | ||
expr: (*expr).into(), | ||
alias: alias.into(), | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
impl From<SetExpression> for Select { | ||
fn from(select: SetExpression) -> Self { | ||
match select { | ||
SetExpression::Query { | ||
result_exprs, | ||
from, | ||
where_expr, | ||
group_by, | ||
} => Select { | ||
distinct: None, | ||
top: None, | ||
projection: result_exprs.into_iter().map(SelectItem::from).collect(), | ||
into: None, | ||
from: from | ||
.into_iter() | ||
.map(|table_expression| TableWithJoins { | ||
relation: (*table_expression).into(), | ||
joins: vec![], | ||
}) | ||
.collect(), | ||
lateral_views: vec![], | ||
selection: where_expr.map(|expr| (*expr).into()), | ||
group_by: GroupByExpr::Expressions(group_by.into_iter().map(id).collect()), | ||
cluster_by: vec![], | ||
distribute_by: vec![], | ||
sort_by: vec![], | ||
having: None, | ||
named_window: vec![], | ||
qualify: None, | ||
value_table_mode: None, | ||
}, | ||
} | ||
} | ||
} | ||
|
||
impl From<SelectStatement> for Query { | ||
fn from(select: SelectStatement) -> Self { | ||
Query { | ||
with: None, | ||
body: Box::new(SetExpr::Select(Box::new((*select.expr).into()))), | ||
order_by: select.order_by.into_iter().map(OrderByExpr::from).collect(), | ||
limit: select.slice.clone().map(|slice| number(slice.number_rows)), | ||
limit_by: vec![], | ||
offset: select.slice.map(|slice| Offset { | ||
value: number(slice.number_rows), | ||
rows: OffsetRows::None, | ||
}), | ||
fetch: None, | ||
locks: vec![], | ||
for_clause: None, | ||
} | ||
} | ||
} |