/* * Copyright 2004-2011 H2 Group. Multiple-Licensed under the H2 License, * Version 1.0, and under the Eclipse Public License, Version 1.0 * (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.test.todo; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; import org.h2.tools.DeleteDbFiles; /** * The complete condition should be sent to a linked table, not just the index * condition. */ public class TestLinkedTableFullCondition { /** * Run just this test. * * @param args ignored */ public static void main(String... args) throws Exception { DeleteDbFiles.execute("data", null, true); Class.forName("org.h2.Driver"); Connection conn; conn = DriverManager.getConnection("jdbc:h2:data/test"); Statement stat = conn.createStatement(); stat.execute("create table test(id int primary key, name varchar)"); stat.execute("insert into test values(1, 'Hello')"); stat.execute("insert into test values(2, 'World')"); stat.execute("create linked table test_link('', 'jdbc:h2:data/test', '', '', 'TEST')"); stat.execute("set trace_level_system_out 2"); // the query sent to the linked database is // SELECT * FROM PUBLIC.TEST T WHERE ID>=? AND ID<=? {1: 1, 2: 1}; // it should also include AND NAME='Hello' stat.execute("select * from test_link where id = 1 and name = 'Hello'"); conn.close(); } }