Skip to content

Commit

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

### Rationale for this change

This is introduced in a previous patch. This patch fixed the compile. ( apache#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: apache#38068

Authored-by: mwish <maplewish117@gmail.com>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
mapleFU authored and loicalleyne committed Nov 13, 2023
1 parent b50b144 commit ff584bf
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 ff584bf

Please sign in to comment.