Github user adrian555 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22455#discussion_r222451616
  
    --- Diff: R/pkg/R/DataFrame.R ---
    @@ -246,30 +248,38 @@ setMethod("showDF",
     #' @note show(SparkDataFrame) since 1.4.0
     setMethod("show", "SparkDataFrame",
               function(object) {
    -            allConf <- sparkR.conf()
    -            if (!is.null(allConf[["spark.sql.repl.eagerEval.enabled"]]) &&
    -                identical(allConf[["spark.sql.repl.eagerEval.enabled"]], 
"true")) {
    -              argsList <- list()
    -              argsList$x <- object
    -              if 
(!is.null(allConf[["spark.sql.repl.eagerEval.maxNumRows"]])) {
    -                numRows <- 
as.numeric(allConf[["spark.sql.repl.eagerEval.maxNumRows"]])
    -                if (numRows > 0) {
    -                  argsList$numRows <- numRows
    +            showFunc <- getOption("sparkr.SparkDataFrame.base_show_func")
    --- End diff --
    
    I don't have any naming preference. One thing to note is that the 
`spark.sparkr.r.command` you mentioned above is the config to the Spark while 
the one I tried to define here is a config in the R side.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to