Don't require a command before EQ in a where clause
This commit is contained in:
parent
84ff52390d
commit
f35151afed
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ pub(super) fn opt_where_clause(p: &mut Parser) {
|
|||
break;
|
||||
}
|
||||
where_predicate(p);
|
||||
if p.current() != L_CURLY && p.current() != SEMI {
|
||||
if p.current() != L_CURLY && p.current() != SEMI && p.current() != EQ {
|
||||
p.expect(COMMA);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue