s.executeUpdate(
"create table " + table + "(id int primary key, val int)");
s.executeUpdate("create index NON_UNIQUE_INDEX_" + table + " on " +
table + "(val)");
myStats.assertNoStatsTable(table);
// Insert data
long start = System.currentTimeMillis();
println("created " + table + ", inserting " + rows + " rows");
insertSimple(con, table, rows, 0);