Skip to content

Commit

Permalink
docs: fix comment for using polars-u64-idx
Browse files Browse the repository at this point in the history
From looking at https://docs.pola.rs/user-guide/installation/ it's `polars-u64-idx` *not* `polars-big-idx`.

`polars-big-idx` does not seem to exist on pypi which references `polars-u64-idx`: https://pypi.org/project/polars/
  • Loading branch information
SebStrug authored Mar 6, 2025
1 parent aa8e47f commit 8cac813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-ops/src/frame/join/cross_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fn cross_join_dfs(
let Some(total_rows) = n_rows_left.checked_mul(n_rows_right) else {
polars_bail!(
ComputeError: "cross joins would produce more rows than fits into 2^32; \
consider compiling with polars-big-idx feature, or set 'streaming'"
consider compiling with polars-u64-idx feature, or set 'streaming'"
);
};
if n_rows_left == 0 || n_rows_right == 0 {
Expand Down

0 comments on commit 8cac813

Please sign in to comment.