[jOOQ/jOOQ#14084] Parser should parse Oracle WITH FUNCTION syntax (and throw an unsupported exception)

This commit is contained in:
Lukas Eder 2022-10-12 16:49:59 +02:00
parent 7a6b6a27e9
commit 0dc172bf85

View File

@ -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;