Skip to content

Commit

Permalink
MINOR: [C++][Parquet] Add table->ValidateFull() to LegacyTwoLevelList…
Browse files Browse the repository at this point in the history
… test (#44847)

### Rationale for this change

Add a validate call as suggested by #43995 (comment)

### What changes are included in this PR?

Add a table->ValidateFull() to LegacyTwoLevelList test case.

### Are these changes tested?

Yes

### Are there any user-facing changes?

No

Authored-by: Gang Wu <[email protected]>
Signed-off-by: Gang Wu <[email protected]>
  • Loading branch information
wgtmac authored Nov 26, 2024
1 parent 891daaa commit a8fe372
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/src/parquet/arrow/arrow_reader_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4117,6 +4117,7 @@ TEST(TestArrowReaderAdHoc, LegacyTwoLevelList) {
FileReader::Make(default_memory_pool(), std::move(file_reader), &reader));
std::shared_ptr<Table> table;
ASSERT_OK(reader->ReadTable(&table));
ASSERT_OK(table->ValidateFull());
AssertTablesEqual(*expected_table, *table);
};

Expand Down

0 comments on commit a8fe372

Please sign in to comment.