Skip to content

Commit

Permalink
refactor: Fix new-streaming test_lazy_parquet::test_row_index
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Sep 30, 2024
1 parent 4cd4ae6 commit 28c556a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/polars-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ all = [
"binary_encoding",
"ffi_plugin",
"polars_cloud",
# "new_streaming",
"new_streaming",
]

# we cannot conditionally activate simd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,6 @@ fn decode_column_prefiltered(
deserialize_filter,
)?;

assert_eq!(array.len(), expected_num_rows);

let column = Series::try_from((arrow_field, array))?.into_column();

let column = if !prefilter {
Expand Down
1 change: 1 addition & 0 deletions py-polars/polars/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1983,6 +1983,7 @@ def collect(
└─────┴─────┴─────┘
"""
new_streaming = _kwargs.get("new_streaming", False)
new_streaming = _kwargs.get("new_streaming", True)

if no_optimization or _eager:
predicate_pushdown = False
Expand Down

0 comments on commit 28c556a

Please sign in to comment.