Examples of planContains()


Examples of org.apache.drill.jdbc.test.JdbcAssert.TestDataConnection.planContains()

    TestDataConnection tdc = JdbcAssert
        .withModel(MODEL, "HR")
        .sql("select LASTNAME from emp order by LASTNAME limit 2")
        .returns("LASTNAME=John\n" +
            "LASTNAME=Jones");
        tdc.planContains(Limit.class);
        tdc.planContains(Order.class);

  }

  @Test
View Full Code Here

Examples of org.apache.drill.jdbc.test.JdbcAssert.TestDataConnection.planContains()

        .withModel(MODEL, "HR")
        .sql("select LASTNAME from emp order by LASTNAME limit 2")
        .returns("LASTNAME=John\n" +
            "LASTNAME=Jones");
        tdc.planContains(Limit.class);
        tdc.planContains(Order.class);

  }

  @Test
  public void testOrderByWithOffset() throws Exception {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.