[jOOQ/jOOQ#9925] Add parser support for IS [ NOT ] DOCUMENT
This commit is contained in:
parent
a6a04e5c84
commit
dd54a05d17
@ -4790,6 +4790,10 @@ final class ParserImpl implements Parser {
|
||||
return not
|
||||
? ((Field) left).isNotJson()
|
||||
: ((Field) left).isJson();
|
||||
else if (left instanceof Field && parseKeywordIf(ctx, "DOCUMENT"))
|
||||
return not
|
||||
? ((Field) left).isNotDocument()
|
||||
: ((Field) left).isDocument();
|
||||
|
||||
parseKeyword(ctx, "DISTINCT FROM");
|
||||
if (left instanceof Field) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user