Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/src/arrow/compute/row/compare_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ TEST(KeyCompare, LARGE_MEMORY_TEST(CompareColumnsToRowsOver4GBFixedLength)) {
RowTableImpl row_table_right,
RepeatRowTableUntil(MakeRowTableFromExecBatch(batch_left).ValueUnsafe(),
num_rows_row_table));
// The row table must not contain a third buffer.
ASSERT_EQ(row_table_right.var_length_rows(), NULLPTR);
// The row table must be fixed length.
ASSERT_TRUE(row_table_right.metadata().is_fixed_length);
// The row data must be greater than 4GB.
ASSERT_GT(row_table_right.buffer_size(1), k4GB);

Expand Down
Loading