Home
last modified time | relevance | path

Searched refs:CUSTOMERS_TABLE (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/tests/support/
DDatabaseCreator.java44 public static final String CUSTOMERS_TABLE = "Customers"; field in DatabaseCreator
91 + CUSTOMERS_TABLE
140 + CUSTOMERS_TABLE;
189 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum)"
193 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
197 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
201 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
205 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
209 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
213 + CUSTOMERS_TABLE + " (cnum, cname, city, rating, snum) "
/libcore/luni/src/test/java/tests/java/sql/
DSelectFunctionalityTest.java85 .equals(DatabaseCreator.CUSTOMERS_TABLE)) { in createTestTables()
267 + DatabaseCreator.CUSTOMERS_TABLE + ", " in test_SelectThreeTables()
269 + DatabaseCreator.CUSTOMERS_TABLE + ".city <> " in test_SelectThreeTables()
272 + DatabaseCreator.CUSTOMERS_TABLE + ".cnum" + " AND " in test_SelectThreeTables()
304 + DatabaseCreator.CUSTOMERS_TABLE + " a, " in test_SelectUnionItself()
305 + DatabaseCreator.CUSTOMERS_TABLE + " b" in test_SelectUnionItself()
332 + DatabaseCreator.CUSTOMERS_TABLE + " c left outer join " in test_SelectLeftOuterJoin()
365 + DatabaseCreator.CUSTOMERS_TABLE + " c right outer join " in test_SelectRightOuterJoin()
396 + DatabaseCreator.CUSTOMERS_TABLE + " GROUP BY rating"; in test_SelectGroupBy()
456 + DatabaseCreator.CUSTOMERS_TABLE; in test_SelectDistinct()