[#2872] Possible StackOverflowError when using plain SQL tables with inlined QueryParts

This commit is contained in:
Lukas Eder 2013-12-06 12:45:50 +01:00
parent bcd073a402
commit 6d726aaa5c

View File

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