private void testIn() throws SQLException {
Db db = new Db(conn);
db.execute("create table test0(a int, b int, c int)");
db.execute("create index idx_1 on test0(a)");
db.execute("create index idx_2 on test0(b, a)");
db.execute("create table test1(a int, b int, c int)");
db.execute("insert into test0 select x / 100, mod(x / 10, 10), mod(x, 10) from system_range(0, 999)");
db.execute("update test0 set a = null where a = 9");
db.execute("update test0 set b = null where b = 9");
db.execute("update test0 set c = null where c = 9");
db.execute("insert into test1 select * from test0");