Fix a mistake in merge conflict resolution earlier

This commit is contained in:
Nickolay Ponomarev 2019-01-13 00:47:40 +03:00
parent ac365bd44e
commit dce09f8054
3 changed files with 3 additions and 4 deletions

View file

@ -90,7 +90,6 @@ impl Parser {
let mut expr = self.parse_prefix()?;
debug!("prefix: {:?}", expr);
loop {
// stop parsing on `NULL` | `NOT NULL`
match self.peek_token() {
Some(Token::Keyword(ref k)) if k == "NOT" || k == "NULL" => break,