Skip to content

Commit

Permalink
[#7171] Add support for parsing Oracle outer join
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Mar 8, 2018
1 parent 569948b commit d788264
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jOOQ/src/main/java/org/jooq/impl/ParserImpl.java
Expand Up @@ -3602,8 +3602,10 @@ else if (sign == Sign.PLUS)
else if ((r = parseFieldUnsignedNumericLiteralIf(ctx, Sign.MINUS)) == null)
r = toField(ctx, parseTerm(ctx, type, prefix)).neg();

if (parseIf(ctx, "(+)"))
r = toField(ctx, r).plus();





while (parseIf(ctx, "::"))
r = cast(toField(ctx, r), parseDataType(ctx));
Expand Down

0 comments on commit d788264

Please sign in to comment.