@@ -35,7 +35,7 @@ class GroupByTranslatorTests : public PelotonCodeGenTest {
35
35
oid_t TestTableId () const { return test_table_oids[0 ]; }
36
36
};
37
37
38
- TEST_F (GroupByTranslatorTest , SingleColumnGroupingTest) {
38
+ TEST_F (GroupByTranslatorTests , SingleColumnGroupingTest) {
39
39
//
40
40
// SELECT a, count(*) FROM table GROUP BY a;
41
41
//
@@ -94,7 +94,7 @@ TEST_F(GroupByTranslatorTest, SingleColumnGroupingTest) {
94
94
}
95
95
}
96
96
97
- TEST_F (GroupByTranslatorTest , MultiColumnGroupingTest) {
97
+ TEST_F (GroupByTranslatorTests , MultiColumnGroupingTest) {
98
98
//
99
99
// SELECT a, b, count(*) FROM table GROUP BY a, b;
100
100
//
@@ -155,7 +155,7 @@ TEST_F(GroupByTranslatorTest, MultiColumnGroupingTest) {
155
155
}
156
156
}
157
157
158
- TEST_F (GroupByTranslatorTest , AverageAggregationTest) {
158
+ TEST_F (GroupByTranslatorTests , AverageAggregationTest) {
159
159
//
160
160
// SELECT a, avg(b) FROM table GROUP BY a;
161
161
//
@@ -207,7 +207,7 @@ TEST_F(GroupByTranslatorTest, AverageAggregationTest) {
207
207
EXPECT_EQ (10 , results.size ());
208
208
}
209
209
210
- TEST_F (GroupByTranslatorTest , AggregationWithOutputPredicateTest) {
210
+ TEST_F (GroupByTranslatorTests , AggregationWithOutputPredicateTest) {
211
211
//
212
212
// SELECT a, avg(b) as x FROM table GROUP BY a WHERE x > 50;
213
213
//
@@ -267,7 +267,7 @@ TEST_F(GroupByTranslatorTest, AggregationWithOutputPredicateTest) {
267
267
EXPECT_EQ (5 , results.size ());
268
268
}
269
269
270
- TEST_F (GroupByTranslatorTest , AggregationWithInputPredciateTest) {
270
+ TEST_F (GroupByTranslatorTests , AggregationWithInputPredciateTest) {
271
271
//
272
272
// SELECT a, avg(b) as x FROM table GROUP BY a WHERE a > 50;
273
273
//
@@ -327,7 +327,7 @@ TEST_F(GroupByTranslatorTest, AggregationWithInputPredciateTest) {
327
327
EXPECT_EQ (4 , results.size ());
328
328
}
329
329
330
- TEST_F (GroupByTranslatorTest , SingleCountStarTest) {
330
+ TEST_F (GroupByTranslatorTests , SingleCountStarTest) {
331
331
//
332
332
// SELECT count(*) FROM table;
333
333
//
@@ -381,7 +381,7 @@ TEST_F(GroupByTranslatorTest, SingleCountStarTest) {
381
381
type::ValueFactory::GetBigIntValue (10 )) == CmpBool::CmpTrue);
382
382
}
383
383
384
- TEST_F (GroupByTranslatorTest , MinAndMaxTest) {
384
+ TEST_F (GroupByTranslatorTests , MinAndMaxTest) {
385
385
//
386
386
// SELECT MAX(a), MIN(b) FROM table;
387
387
//
0 commit comments