MCPcopy Create free account
hub / github.com/BlazingDB/blazingsql / TEST_F

Function TEST_F

engine/tests/parser/expression_utils_test.cpp:12–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10};
11
12TEST_F(ExpressionUtilsTest, count_star_case) {
13
14 // 'select count(*) from big_taxi' produces:
15 std::string query_part = "BindableTableScan(table=[[main, big_taxi]], projects=[[]], aliases=[[$f0]])";
16
17 std::vector<int> expected = {0}; // We want to load only one column, the first by default
18 std::vector<int> result = get_projections(query_part);
19
20 EXPECT_EQ(result, expected);
21}
22
23TEST_F(ExpressionUtilsTest, expression_contains_multiple_equal_over_clauses) {
24

Callers

nothing calls this directly

Tested by

no test coverage detected