Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: don't rechunk by default in pl$concat() #1125

Merged
merged 2 commits into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
(#1112).
- In `$dt$combine()`, the arguments `tm` and `tu` are renamed `time` and
`time_unit` (#1116).
- The default value of the `rechunk` argument of `pl$concat()` is changed from `TRUE` to `FALSE` (#1125).

### New features

Expand Down
2 changes: 1 addition & 1 deletion R/functions__eager.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pl_concat = function(
"vertical", "vertical_relaxed", "horizontal",
"diagonal", "diagonal_relaxed"
),
rechunk = TRUE,
rechunk = FALSE,
parallel = TRUE) {
l = unpack_list(..., skip_classes = "data.frame", .context = "in pl$concat")

Expand Down
2 changes: 1 addition & 1 deletion man/pl_concat.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading