Kaydet (Commit) b713652b authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

Also teach "foo IS [NOT] bar" to our SQL parser (when bar is not NULL)

Syntax supported by at least SQLite.
üst 6031d128
......@@ -1282,6 +1282,12 @@ comparison:
$$->append($3);
$$->append($4);
}
| SQL_TOKEN_IS sql_not
{
$$ = SQL_NEW_RULE;
$$->append($1);
$$->append($2);
}
;
between_predicate_part_2:
sql_not SQL_TOKEN_BETWEEN row_value_constructor SQL_TOKEN_AND row_value_constructor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment