// Now create VoltTable and test that
VoltTable vt = new VoltTable(new ColumnInfo[] {
new ColumnInfo(catalog_col0.getName(), VoltType.get(catalog_col0.getType())), // D_ID
new ColumnInfo(catalog_col1.getName(), VoltType.get(catalog_col1.getType())), // D_W_ID
});
vt.addRow(params[0], params[1]);
VoltTableRow vt_row = vt.fetchRow(0);
int vt_partition = p_estimator.getTableRowPartition(catalog_tbl, vt_row);
assert(vt_partition >= 0) : "Invalid Partition: " + vt_partition;
assertEquals(stmt_partition, vt_partition);
}