We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae5323 commit 8e0e64fCopy full SHA for 8e0e64f
1 file changed
tests/test_performance.py
@@ -94,13 +94,12 @@ def test_element_wise_comparison_slower_than_eq_missing_for_list_columns() -> No
94
95
col_left = f"val_{Side.LEFT}"
96
col_right = f"val_{Side.RIGHT}"
97
- base_list = list(range(list_len))
98
- df = pl.LazyFrame(
+ df = pl.DataFrame(
99
{
100
- col_left: pl.repeat(pl.lit(base_list), n_rows),
101
- col_right: pl.repeat(pl.lit(base_list), n_rows),
+ col_left: [list(range(list_len)) for _ in range(n_rows)],
+ col_right: [list(range(list_len)) for _ in range(n_rows)],
102
}
103
- ).collect()
+ )
104
105
times_eq = []
106
times_cond = []
0 commit comments