Making SQLTable pass on tables name to AbstractTable in a similar name how SQLField does it.

This commit is contained in:
Szymon Jachim 2015-10-08 14:46:33 +02:00
parent ca0ebec609
commit b9ca75e9b2

View File

@ -55,7 +55,7 @@ class SQLTable extends AbstractTable<Record> {
private final QueryPart delegate;
public SQLTable(QueryPart delegate) {
super("table");
super(delegate.toString());
this.delegate = delegate;
}