Skip to content

Commit

Permalink
add storage_options to pl$read_parquet()
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed Apr 26, 2024
1 parent a4f8994 commit 59cb78d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/io_parquet.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pl_scan_parquet = function(
#' Read a parquet file
#' @rdname IO_read_parquet
#' @inherit pl_read_csv return
#' @inheritParams pl_scan_parquet
#' @inherit pl_scan_parquet params details
#' @examplesIf requireNamespace("arrow", quietly = TRUE) && arrow::arrow_with_dataset() && arrow::arrow_with_parquet()
#' temp_dir = tempfile()
#' # Write a hive-style partitioned parquet dataset
Expand Down Expand Up @@ -121,6 +121,7 @@ pl_read_parquet = function(
hive_partitioning = TRUE,
rechunk = TRUE,
low_memory = FALSE,
storage_options = NULL,
use_statistics = TRUE,
cache = TRUE) {
.args = as.list(environment())
Expand Down
27 changes: 27 additions & 0 deletions man/IO_read_parquet.Rd

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

0 comments on commit 59cb78d

Please sign in to comment.