[jOOQ/jOOQ#11699] Support parsing Oracle comparison operators with whitespace in between
This commit is contained in:
parent
7b7cd0e79f
commit
9f0530cace
@ -12233,6 +12233,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
}
|
||||
|
||||
private final Comparator parseComparatorIf() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if (parseIf("="))
|
||||
return Comparator.EQUALS;
|
||||
else if (parseIf("!=") || parseIf("<>") || parseIf("^="))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user