[#7163] More consistent method names

This commit is contained in:
Lukas Eder 2019-05-14 13:52:41 +02:00
parent 62c42944d3
commit 9e348f28d0

View File

@ -8268,7 +8268,7 @@ final class ParserImpl implements Parser {
}
private static final Table<?> parseTableName(ParserContext ctx) {
return ctx.tableLookup(parseName(ctx));
return ctx.lookupTable(parseName(ctx));
}
private static final Table<?> parseTableNameIf(ParserContext ctx) {
@ -8411,7 +8411,7 @@ final class ParserImpl implements Parser {
}
else {
parse(ctx, '*');
return ctx.tableLookup(result == null ? i1 : DSL.name(result.toArray(EMPTY_NAME))).asterisk();
return ctx.lookupTable(result == null ? i1 : DSL.name(result.toArray(EMPTY_NAME))).asterisk();
}
}
while (parseIf(ctx, '.'));
@ -10256,7 +10256,7 @@ final class ParserContext {
+ (sqlString.length() > position + 80 ? "..." : "");
}
Table<?> tableLookup(Name name) {
Table<?> lookupTable(Name name) {
if (meta != null) {
List<Table<?>> tables = meta.getTables(name);