Skip to content

Commit

Permalink
Some minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Aug 29, 2024
1 parent acb3ab6 commit 748f11c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions python/cudf/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ def test_orc_read_statistics(datadir):
pytest.skip(".orc file is not found: %s" % e)

# Check numberOfValues
# assert_eq(file_statistics[0]["int1"]["number_of_values"], 11_000)
print(file_statistics[0])
assert_eq(file_statistics[0]["int1"].number_of_values, 11_000)
assert_eq(
file_statistics[0]["int1"].number_of_values,
Expand Down
1 change: 0 additions & 1 deletion python/cudf/cudf/utils/ioutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1873,7 +1873,6 @@ def _apply_filter_bool_eq(val, col_stats):


def _apply_filter_not_eq(val, col_stats):
print(col_stats)
return ("minimum" in col_stats and val < col_stats["minimum"]) or (
"maximum" in col_stats and val > col_stats["maximum"]
)
Expand Down

0 comments on commit 748f11c

Please sign in to comment.