Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed Feb 24, 2023
1 parent d1a0001 commit 714ded6
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ TEST_F(BloomFilterAggAggregateTest, bloomFilter) {
data.resize(bloom.serializedSize());
bloom.serialize(data.data());

auto expected = {
makeRowVector({makeFlatVector<StringView>(1, [&](vector_size_t row) {
return StringView(data);
})})};
auto expected = {makeRowVector({makeFlatVector<StringView>(
1, [&](vector_size_t row) { return StringView(data); })})};

testAggregations(vectors, {}, {"bloom_filter_agg(c0, 5, 64)"}, expected);
}
Expand Down

0 comments on commit 714ded6

Please sign in to comment.