[#8350] Parser parses (a, b) IS NULL as (a, b) IS NOT NULL

This commit is contained in:
lukaseder 2019-02-25 09:32:31 +01:00
parent 04d03bfda0
commit 54c5bc3138

View File

@ -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) {