Skip to content

Commit

Permalink
Fix error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
andylokandy committed Feb 4, 2022
1 parent 10ade69 commit 09859e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/ast/src/parser/rule/expr.rs
Expand Up @@ -495,11 +495,11 @@ pub fn expr_element<'a>(i: Input<'a>) -> IResult<Input<'a>, WithSpan<'a>, Error>
let (rest, elem) = rule! (
#column_ref : "<column>"
| #is_null : "... IS NULL"
| #in_list : "IN [...]"
| #in_list : "IN (<expr>, ...)"
| #in_subquery : "IN (SELECT ...)"
| #between : "BETWEEN ..."
| #binary_op : "<binary operator>"
| #unary_op : "<unary operator>"
| #binary_op : "<operator>"
| #unary_op : "<operator>"
| #cast : "CAST(... AS ...)"
| #count_all : "COUNT(*)"
| #literal : "<literal>"
Expand Down

0 comments on commit 09859e3

Please sign in to comment.