[jOOQ/jOOQ#11966] Support parsing unary ~ operator

This commit is contained in:
Lukas Eder 2022-01-10 17:42:12 +01:00
parent db42d102a4
commit b402ffca75

View File

@ -7749,6 +7749,9 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
}
if (parseIf('~'))
return toField(parseUnaryOps()).bitNot();
FieldOrRow r;
Sign sign = parseSign();