Skip to content

Commit e589d90

Browse files
authored
Merge pull request #388 from ben-schwen/as.data.frame_defaultArgs
add default arguments to as.data.frame.disk.frame
2 parents 8502161 + 38b265f commit e589d90

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/as.data.frame.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#'
1111
#' # clean up
1212
#' delete(cars.df)
13-
as.data.frame.disk.frame <- function(x, row.names, optional, ...) { # needs to retain x for consistency
13+
as.data.frame.disk.frame <- function(x, row.names = NULL, optional = FALSE, ...) { # needs to retain x for consistency
1414
as.data.frame(collect(x), row.names, optional, ...)
1515
}
1616

0 commit comments

Comments
 (0)