private QueryIterTableSQL(Relation relation,
Collection<BindingMaker> bindingMakers, ExecutionContext execCxt) {
super(execCxt);
this.bindingMakers = bindingMakers;
SelectStatementBuilder builder = new SelectStatementBuilder(relation);
wrapped = new SQLIterator(
builder.getSQLStatement(), builder.getColumnSpecs(), relation.database());
}