stmt1.execute("insert into table1 values(200, 'bar')");
c1.close();
// Make an optiq schema with both a jdbc schema and a non-jdbc schema
Connection optiqConn = DriverManager.getConnection("jdbc:optiq:");
OptiqConnection optiqConnection =
optiqConn.unwrap(OptiqConnection.class);
SchemaPlus rootSchema = optiqConnection.getRootSchema();
rootSchema.add("DB",
JdbcSchema.create(rootSchema, "DB",
JdbcSchema.dataSource(db, "org.hsqldb.jdbcDriver", "", ""),
null, null));
rootSchema.add("hr", new ReflectiveSchema(new JdbcTest.HrSchema()));