This is an automated email from the ASF dual-hosted git repository.
jorisvandenbossche pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new b30d9616bb GH-38068: [C++][CI] Fixing Parquet unittest
`arrow_reader_writer_test.cc` compile (#38069)
b30d9616bb is described below
commit b30d9616bb5056692b4b90a5e67b9a5ac206b2d0
Author: mwish <[email protected]>
AuthorDate: Fri Oct 6 19:41:14 2023 +0800
GH-38068: [C++][CI] Fixing Parquet unittest `arrow_reader_writer_test.cc`
compile (#38069)
### Rationale for this change
This is introduced in a previous patch. This patch fixed the compile. (
https://github.com/apache/arrow/pull/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 <[email protected]>
Signed-off-by: Joris Van den Bossche <[email protected]>
---
cpp/src/parquet/arrow/arrow_reader_writer_test.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cpp/src/parquet/arrow/arrow_reader_writer_test.cc
b/cpp/src/parquet/arrow/arrow_reader_writer_test.cc
index 7a94b1f3a1..315405ef1e 100644
--- a/cpp/src/parquet/arrow/arrow_reader_writer_test.cc
+++ b/cpp/src/parquet/arrow/arrow_reader_writer_test.cc
@@ -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);
}