Minor parser fixes

This commit is contained in:
lukaseder 2019-01-29 12:37:53 +01:00
parent a685d70ec5
commit d3be7f3787

View File

@ -3563,7 +3563,7 @@ final class ParserImpl implements Parser {
return parseAlterTableAddField(ctx);
}
private static Field<?> parseAlterTableAddField(ParserContext ctx) {
private static final Field<?> parseAlterTableAddField(ParserContext ctx) {
// The below code is taken from CREATE TABLE, with minor modifications as
// https://github.com/jOOQ/jOOQ/issues/5317 has not yet been implemented
@ -4603,6 +4603,11 @@ final class ParserImpl implements Parser {
if (field == null) {
field = parseField(ctx);