Skip to content

Commit

Permalink
feat!: don't rechunk by default in pl$concat() (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi authored Jun 2, 2024
1 parent f505195 commit 2af5ffb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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.

0 comments on commit 2af5ffb

Please sign in to comment.