Skip to content

Commit

Permalink
Update cpp/src/arrow/dataset/file_parquet.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <[email protected]>
  • Loading branch information
mapleFU and pitrou authored Sep 3, 2024
1 parent 132363c commit 49f41e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/dataset/file_parquet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ std::optional<compute::Expression> ParquetFileFragment::EvaluateStatisticsAsExpr
in_range = compute::and_(std::move(lower_bound), std::move(upper_bound));
}
if (may_has_null) {
return compute::or_(std::move(in_range), compute::is_null(field_expr));
return compute::or_(std::move(in_range), compute::is_null(std::move(field_expr)));
}
return in_range;
}
Expand Down

0 comments on commit 49f41e2

Please sign in to comment.