VoltTable vt = state.dependencies.get(dependency_id).getResult();
// Special Non-Blocking Wrapper
if (nonblocking) {
VoltTableNonBlocking vtnb = new VoltTableNonBlocking(hstore_conf.site.txn_profiling ? ts.profiler : null);
if (vt != null) vtnb.setRealTable(vt);
results[stmtIndex] = vtnb;
} else {
assert(vt != null) :
String.format("Null output result for Statement index %d in %s", stmtIndex, this);
results[stmtIndex] = vt;