[jOOQ/jOOQ#11390] Support parsing RETURN statement
This commit is contained in:
parent
f5c32eb0a2
commit
3388425005
@ -256,6 +256,7 @@ import static org.jooq.impl.DSL.regrSYY;
|
||||
import static org.jooq.impl.DSL.regrSlope;
|
||||
// ...
|
||||
import static org.jooq.impl.DSL.replace;
|
||||
// ...
|
||||
import static org.jooq.impl.DSL.reverse;
|
||||
import static org.jooq.impl.DSL.right;
|
||||
import static org.jooq.impl.DSL.rollup;
|
||||
@ -3176,6 +3177,11 @@ final class ParserContext {
|
||||
|
||||
|
||||
|
||||
;
|
||||
else if (peekKeyword("RETURN") && requireProEdition())
|
||||
|
||||
|
||||
|
||||
;
|
||||
else if (peekKeyword("RAISE") && requireProEdition())
|
||||
|
||||
@ -3617,6 +3623,12 @@ final class ParserContext {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user