Skip to content

Commit e25dbe1

Browse files
committed
sql_parser: remove unused expression
1 parent 18750b5 commit e25dbe1

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/ast/expression/mod.rs

-10
Original file line numberDiff line numberDiff line change
@@ -191,16 +191,6 @@ impl From<LikeExpressionType> for Expression {
191191
}
192192
}
193193

194-
/// An escape expression
195-
#[derive(Debug, PartialEq, Clone)]
196-
pub struct EscapeExpression {
197-
/// The expression
198-
pub expression: Box<Expression>,
199-
200-
/// The escape expression
201-
pub escape_expression: Option<Box<Expression>>,
202-
}
203-
204194
/// An IS expression
205195
#[derive(Debug, PartialEq, Clone)]
206196
pub struct AnIsExpression {

0 commit comments

Comments
 (0)