[#8350] Parser parses (a, b) IS NULL as (a, b) IS NOT NULL
This commit is contained in:
parent
04d03bfda0
commit
54c5bc3138
@ -4241,7 +4241,7 @@ final class ParserImpl implements Parser {
|
||||
: ((RowN) left).isNotNull()
|
||||
: left instanceof Field
|
||||
? ((Field) left).isNull()
|
||||
: ((RowN) left).isNotNull();
|
||||
: ((RowN) left).isNull();
|
||||
|
||||
parseKeyword(ctx, "DISTINCT FROM");
|
||||
if (left instanceof Field) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user