Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kramerul committed Jun 28, 2024
1 parent 5db605f commit e8100ac
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions core/src/test/java/org/apache/calcite/test/JdbcAdapterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -252,17 +252,6 @@ class JdbcAdapterTest {
.returnsCount(25);
}

/** Test case for
* <a href="https://issues.apache.org/jira/browse/CALCITE-6268">[CALCITE-6268]
* Support implementing custom JdbcSchema</a>. */
@Test void testCustomJdbc() {
CalciteAssert.model(JdbcTest.FOODMART_SCOTT_CUSTOM_MODEL)
.query("select * from SCOTT.emp\n")
.enable(CalciteAssert.DB == CalciteAssert.DatabaseInstance.HSQLDB)
.planHasSql("SELECT *\nFROM \"SCOTT\".\"EMP\"")
.returnsCount(14);
}

@Test void testFilterUnionPlan() {
CalciteAssert.model(FoodmartSchema.FOODMART_MODEL)
.query("select * from (\n"
Expand Down

0 comments on commit e8100ac

Please sign in to comment.