jonkeane commented on a change in pull request #9743:
URL: https://github.com/apache/arrow/pull/9743#discussion_r605817747
##########
File path: r/R/feather.R
##########
@@ -144,17 +144,20 @@ write_feather <- function(x,
#' }
read_feather <- function(file, col_select = NULL, as_data_frame = TRUE, ...) {
if (!inherits(file, "RandomAccessFile")) {
- file <- make_readable_file(file)
+ file <- arrow:::make_readable_file(file)
Review comment:
What's up with `arrow:::` here? this shouldn't be necessary since we are
already in arrow's private namespace, and will cause issues during R CMD check
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]