Skip to content

Commit

Permalink
GH-38068: [C++][CI] Fixing Parquet unittest `arrow_reader_writer_test…
Browse files Browse the repository at this point in the history
….cc` compile (#38069)

### Rationale for this change

This is introduced in a previous patch. This patch fixed the compile. ( #37854 )

### What changes are included in this PR?

a one-line fixing.

### Are these changes tested?

no

### Are there any user-facing changes?

no

* Closes: #38068

Authored-by: mwish <maplewish117@gmail.com>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
mapleFU committed Oct 6, 2023
1 parent e1d7459 commit b30d961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/arrow/arrow_reader_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2358,7 +2358,7 @@ TEST(TestArrowReadWrite, GetRecordBatchReader) { TestGetRecordBatchReader(); }
TEST(TestArrowReadWrite, NoneCoalescedReads) {
ArrowReaderProperties arrow_properties = default_arrow_reader_properties();
arrow_properties.set_pre_buffer(false);
arrow_properties.set_cache_options(::arrow::io::CacheOptions::Defaults())
arrow_properties.set_cache_options(::arrow::io::CacheOptions::Defaults());
TestGetRecordBatchReader(arrow_properties);
}

Expand Down

0 comments on commit b30d961

Please sign in to comment.