// stat.execute("set mode regular");
// stat.execute("create table x()");
// stat.execute("drop table x");
time = System.currentTimeMillis();
prep = conn.prepareStatement("select count(*) from test t1, test t2");
prep.executeQuery();
rs = stat.executeQuery("select count(*) from test t1, test t2");
rs.next();
int c = rs.getInt(1);
assertEquals(1000000, c);
time = System.currentTimeMillis() - time;