HyriseSQLParser/test/lib/select.cpp

47 lines
1.3 KiB
C++
Raw Normal View History

2014-12-03 16:32:56 +01:00
2014-12-18 12:11:26 +01:00
2014-12-03 16:32:56 +01:00
#include "test.h"
2014-12-18 12:11:26 +01:00
#include "helper.h"
2014-12-03 16:32:56 +01:00
#include "SQLParser.h"
using namespace hsql;
2014-12-18 12:11:26 +01:00
TEST(SelectTest) {
TEST_PARSE_SINGLE_SQL("SELECT * FROM students;", kStmtSelect, SelectStatement, stmt);
ASSERT_NULL(stmt->where_clause);
ASSERT_NULL(stmt->group_by);
}
TEST(SelectHavingTest) {
TEST_PARSE_SINGLE_SQL("SELECT city, AVG(grade) AS avg_grade FROM students GROUP BY city HAVING AVG(grade) < 2.0", kStmtSelect, SelectStatement, stmt);
2014-12-18 12:28:24 +01:00
ASSERT_FALSE(stmt->select_distinct);
2014-12-18 12:11:26 +01:00
GroupByDescription* group = stmt->group_by;
ASSERT_NOTNULL(group);
ASSERT_EQ(group->columns->size(), 1);
ASSERT(group->having->isSimpleOp('<'));
ASSERT(group->having->expr->isType(kExprFunctionRef));
ASSERT(group->having->expr2->isType(kExprLiteralFloat));
}
2014-12-03 16:32:56 +01:00
2014-12-18 12:11:26 +01:00
TEST(SelectDistinctTest) {
TEST_PARSE_SINGLE_SQL("SELECT DISTINCT grade, city FROM students;", kStmtSelect, SelectStatement, stmt);
2014-12-18 12:28:24 +01:00
ASSERT(stmt->select_distinct);
2014-12-03 16:32:56 +01:00
ASSERT_NULL(stmt->where_clause);
}
2014-12-18 12:11:26 +01:00
TEST(SelectGroupDistinctTest) {
2014-12-18 12:28:24 +01:00
TEST_PARSE_SINGLE_SQL("SELECT city, COUNT(name), COUNT(DISTINCT grade) FROM students GROUP BY city;", kStmtSelect, SelectStatement, stmt);
ASSERT_FALSE(stmt->select_distinct);
ASSERT_EQ(stmt->select_list->size(), 3);
ASSERT(!stmt->select_list->at(1)->distinct);
ASSERT(stmt->select_list->at(2)->distinct);
2014-12-18 12:11:26 +01:00
}