[jOOQ/jOOQ#14084] Parser should parse Oracle WITH FUNCTION syntax (and throw an unsupported exception)
This commit is contained in:
parent
7a6b6a27e9
commit
0dc172bf85
@ -1281,6 +1281,9 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
|
||||
List<CommonTableExpression<?>> cte = new ArrayList<>();
|
||||
do {
|
||||
if (parseKeywordIf("FUNCTION"))
|
||||
throw notImplemented("WITH FUNCTION");
|
||||
|
||||
Name name = parseIdentifier();
|
||||
DerivedColumnList dcl = null;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user