@@ -59,7 +59,7 @@ class AggregationTest : public OperatorTestBase {
59
59
void TearDown () override {}
60
60
};
61
61
62
- TEST_F (AggregationTest, singleKeySingleAggregate ) {
62
+ TEST_F (AggregationTest, DISABLED_singleKeySingleAggregate ) {
63
63
constexpr int kSize = 10 ;
64
64
auto vector = makeRowVector ({
65
65
makeFlatVector<int64_t >(kSize , [](int i) { return i % 3 ; }),
@@ -76,7 +76,7 @@ TEST_F(AggregationTest, singleKeySingleAggregate) {
76
76
AssertQueryBuilder (plan).assertResults (expected);
77
77
}
78
78
79
- TEST_F (AggregationTest, singleKeyMultiAggregate ) {
79
+ TEST_F (AggregationTest, DISABLED_singleKeyMultiAggregate ) {
80
80
constexpr int kSize = 10 ;
81
81
auto vector = makeRowVector ({
82
82
makeFlatVector<int64_t >(kSize , [](int i) { return i % 3 ; }),
@@ -96,7 +96,7 @@ TEST_F(AggregationTest, singleKeyMultiAggregate) {
96
96
AssertQueryBuilder (plan).assertResults (expected);
97
97
}
98
98
99
- TEST_F (AggregationTest, multiKeySingleAggregate ) {
99
+ TEST_F (AggregationTest, DISABLED_multiKeySingleAggregate ) {
100
100
constexpr int kSize = 10 ;
101
101
// 0 1 0 1 0 1 0 1 0 1
102
102
// 0 1 2 0 1 2 0 1 2 0
@@ -118,7 +118,7 @@ TEST_F(AggregationTest, multiKeySingleAggregate) {
118
118
AssertQueryBuilder (plan).assertResults (expected);
119
119
}
120
120
121
- TEST_F (AggregationTest, tpchQ1 ) {
121
+ TEST_F (AggregationTest, DISABLED_tpchQ1 ) {
122
122
// TODO: Use StringView instead of int64_t for keys.
123
123
struct {
124
124
std::uniform_int_distribution<> returnflag{0 , 2 };
0 commit comments