Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
WangGuangxin committed Jan 8, 2025
1 parent b11cb9f commit c1c3edb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,12 @@ TEST_F(CollectSetAggregateTest, nullType) {
});
testAggregations({data}, {}, {"collect_set(c0)"}, {}, {expected});

// with groupby key
auto expected2 = makeRowVector({
// The grouping key is of UNKONWN type.
expected = makeRowVector({
makeNullConstant(TypeKind::UNKNOWN, 1),
makeArrayVectorFromJson<int32_t>({"[]"}),
});
testAggregations({data}, {"c0"}, {"collect_set(c0)"}, {}, {expected2});
testAggregations({data}, {"c0"}, {"collect_set(c0)"}, {}, {expected});
}

} // namespace
Expand Down

0 comments on commit c1c3edb

Please sign in to comment.