Package org.apache.drill.jdbc.test.JdbcAssert

Examples of org.apache.drill.jdbc.test.JdbcAssert.TestDataConnection


  }


  @Test
  public void testLimitOrderBy() throws Exception {
    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);

  }
View Full Code Here

TOP

Related Classes of org.apache.drill.jdbc.test.JdbcAssert.TestDataConnection

Copyright © 2018 www.massapicom. 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.