[jOOQ/jOOQ#14488] Parser should disambiguate SQL Server + operand based on operand lookup

This commit is contained in:
Lukas Eder 2023-01-11 17:26:31 +01:00
parent 82f57ab254
commit 244e5ab910

View File

@ -8088,6 +8088,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
if (add)
return lhs.add(rhs);
else if (lhs.getDataType().isDate() && rhs.getDataType().isDate())