[jOOQ/jOOQ#10489] Add parser support for qualified data types in DDL and casts

This commit is contained in:
Lukas Eder 2020-08-14 10:50:18 +02:00
parent 29bce7c908
commit e90a9abd76

View File

@ -10542,7 +10542,7 @@ final class ParserImpl implements Parser {
break;
}
return new DefaultDataType(ctx.dsl.dialect(), Object.class, parseIdentifier(ctx).toString());
return new DefaultDataType(ctx.dsl.dialect(), Object.class, parseName(ctx));
}
private static final boolean parseKeywordOrIdentifierIf(ParserContext ctx, String keyword) {