From bda541b868e030e8d30a81014f32d3462696d5bc Mon Sep 17 00:00:00 2001 From: Brandon Greenwell Date: Tue, 19 Feb 2019 09:38:15 -0500 Subject: [PATCH] :bug: change f to file in read_parquet_file() --- r/R/parquet.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/R/parquet.R b/r/R/parquet.R index 6a393e2c880..64dc1cd7aad 100644 --- a/r/R/parquet.R +++ b/r/R/parquet.R @@ -26,7 +26,7 @@ #' #' @export read_parquet <- function(file, as_tibble = TRUE, use_threads = TRUE, ...) { - tab <- shared_ptr(`arrow::Table`, read_parquet_file(f)) + tab <- shared_ptr(`arrow::Table`, read_parquet_file(file)) if (isTRUE(as_tibble)) { tab <- as_tibble(tab, use_threads = use_threads) }