VoltType types[] = { VoltType.TINYINT, VoltType.STRING, VoltType.INTEGER,
VoltType.BIGINT, VoltType.FLOAT, VoltType.SMALLINT, VoltType.TIMESTAMP,
VoltType.DECIMAL, VoltType.TINYINT };
VoltTable tt = new VoltTable(
new ColumnInfo("tinyint", types[0]),
new ColumnInfo("string", types[1]),
new ColumnInfo("integer", types[2]),
new ColumnInfo("bigint", types[3]),
new ColumnInfo("float", types[4]),
new ColumnInfo("smallint", types[5]),
new ColumnInfo("timestamp", types[6]),
new ColumnInfo("decimal", types[7]),
new ColumnInfo("tinyint", types[0]));
for (int i=0; i < content.length; ++i) {
Object[] vals = new Object[content.length];;
for (int k=0; k < content.length; k++) {
if (i == k)