| 8 | using namespace hsql; |
| 9 | |
| 10 | TEST(SelectTest) { |
| 11 | TEST_PARSE_SINGLE_SQL("SELECT * FROM students;", kStmtSelect, SelectStatement, result, stmt); |
| 12 | |
| 13 | ASSERT_NULL(stmt->whereClause); |
| 14 | ASSERT_NULL(stmt->groupBy); |
| 15 | } |
| 16 | |
| 17 | TEST(SelectExprTest) { |
| 18 | TEST_PARSE_SINGLE_SQL("SELECT a, MAX(b), CUSTOM(c, F(un)) FROM students;", kStmtSelect, SelectStatement, result, |
nothing calls this directly
no test coverage detected