Skip to content

Commit

Permalink
add print
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Jan 12, 2024
1 parent bb48604 commit a60c5b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/python_wheel_unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions cpp/src/arrow/dataset/file_parquet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include "arrow/dataset/file_parquet.h"

#include <iostream>
#include <memory>
#include <mutex>
#include <unordered_map>
Expand Down Expand Up @@ -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_) {
Expand Down

0 comments on commit a60c5b3

Please sign in to comment.