Skip to content

Commit

Permalink
Enhance segment test checking
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 committed May 14, 2024
1 parent 536dbce commit 184392e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/src/arrow/acero/hash_aggregate_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,7 @@ void TestSegments(std::unique_ptr<RowSegmenter>& segmenter, const ExecSpan& batc
// Assert next is the last (empty) segment.
ASSERT_OK_AND_ASSIGN(auto segment, segmenter->GetNextSegment(batch, offset));
ASSERT_GE(segment.offset, batch.length);
ASSERT_EQ(segment.length, 0);
ASSERT_TRUE(segment.is_open);
ASSERT_TRUE(segment.extends);
}
Expand Down

0 comments on commit 184392e

Please sign in to comment.