@@ -35,7 +35,7 @@ class GroupByTranslatorTests : public PelotonCodeGenTest {
3535 oid_t TestTableId () const { return test_table_oids[0 ]; }
3636};
3737
38- TEST_F (GroupByTranslatorTest , SingleColumnGroupingTest) {
38+ TEST_F (GroupByTranslatorTests , SingleColumnGroupingTest) {
3939 //
4040 // SELECT a, count(*) FROM table GROUP BY a;
4141 //
@@ -94,7 +94,7 @@ TEST_F(GroupByTranslatorTest, SingleColumnGroupingTest) {
9494 }
9595}
9696
97- TEST_F (GroupByTranslatorTest , MultiColumnGroupingTest) {
97+ TEST_F (GroupByTranslatorTests , MultiColumnGroupingTest) {
9898 //
9999 // SELECT a, b, count(*) FROM table GROUP BY a, b;
100100 //
@@ -155,7 +155,7 @@ TEST_F(GroupByTranslatorTest, MultiColumnGroupingTest) {
155155 }
156156}
157157
158- TEST_F (GroupByTranslatorTest , AverageAggregationTest) {
158+ TEST_F (GroupByTranslatorTests , AverageAggregationTest) {
159159 //
160160 // SELECT a, avg(b) FROM table GROUP BY a;
161161 //
@@ -207,7 +207,7 @@ TEST_F(GroupByTranslatorTest, AverageAggregationTest) {
207207 EXPECT_EQ (10 , results.size ());
208208}
209209
210- TEST_F (GroupByTranslatorTest , AggregationWithOutputPredicateTest) {
210+ TEST_F (GroupByTranslatorTests , AggregationWithOutputPredicateTest) {
211211 //
212212 // SELECT a, avg(b) as x FROM table GROUP BY a WHERE x > 50;
213213 //
@@ -267,7 +267,7 @@ TEST_F(GroupByTranslatorTest, AggregationWithOutputPredicateTest) {
267267 EXPECT_EQ (5 , results.size ());
268268}
269269
270- TEST_F (GroupByTranslatorTest , AggregationWithInputPredciateTest) {
270+ TEST_F (GroupByTranslatorTests , AggregationWithInputPredciateTest) {
271271 //
272272 // SELECT a, avg(b) as x FROM table GROUP BY a WHERE a > 50;
273273 //
@@ -327,7 +327,7 @@ TEST_F(GroupByTranslatorTest, AggregationWithInputPredciateTest) {
327327 EXPECT_EQ (4 , results.size ());
328328}
329329
330- TEST_F (GroupByTranslatorTest , SingleCountStarTest) {
330+ TEST_F (GroupByTranslatorTests , SingleCountStarTest) {
331331 //
332332 // SELECT count(*) FROM table;
333333 //
@@ -381,7 +381,7 @@ TEST_F(GroupByTranslatorTest, SingleCountStarTest) {
381381 type::ValueFactory::GetBigIntValue (10 )) == CmpBool::CmpTrue);
382382}
383383
384- TEST_F (GroupByTranslatorTest , MinAndMaxTest) {
384+ TEST_F (GroupByTranslatorTests , MinAndMaxTest) {
385385 //
386386 // SELECT MAX(a), MIN(b) FROM table;
387387 //
0 commit comments