From a60c5b31edb652eb10292bc62543538be5e60a7e Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Fri, 12 Jan 2024 09:58:29 +0100 Subject: [PATCH] add print --- ci/scripts/python_wheel_unix_test.sh | 2 +- cpp/src/arrow/dataset/file_parquet.cc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/scripts/python_wheel_unix_test.sh b/ci/scripts/python_wheel_unix_test.sh index 01250ff7ef40c..e4bee4cb565ee 100755 --- a/ci/scripts/python_wheel_unix_test.sh +++ b/ci/scripts/python_wheel_unix_test.sh @@ -91,5 +91,5 @@ if [ "${CHECK_UNITTESTS}" == "ON" ]; then # Execute unittest, test dependencies must be installed python -c 'import pyarrow; pyarrow.create_library_symlinks()' - python -m pytest -r s --pyargs pyarrow + python -m pytest -r s -v -s --pyargs pyarrow fi diff --git a/cpp/src/arrow/dataset/file_parquet.cc b/cpp/src/arrow/dataset/file_parquet.cc index 0ce08502921f3..e1ba1c0ae6ce3 100644 --- a/cpp/src/arrow/dataset/file_parquet.cc +++ b/cpp/src/arrow/dataset/file_parquet.cc @@ -17,6 +17,7 @@ #include "arrow/dataset/file_parquet.h" +#include #include #include #include @@ -820,6 +821,7 @@ Status ParquetFileFragment::SetMetadata( manifest_ = std::move(manifest); statistics_expressions_.resize(row_groups_->size(), compute::literal(true)); + std::cout << "Manifest number of fields: " << manifest_->descr->num_columns() << "\n"; statistics_expressions_complete_.resize(manifest_->descr->num_columns(), false); for (int row_group : *row_groups_) {