aboutsummaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
Diffstat (limited to 'R')
-rw-r--r--R/pkg/R/functions.R4
1 files changed, 3 insertions, 1 deletions
diff --git a/R/pkg/R/functions.R b/R/pkg/R/functions.R
index 6eef4d638e..e606b20570 100644
--- a/R/pkg/R/functions.R
+++ b/R/pkg/R/functions.R
@@ -71,7 +71,9 @@ createFunctions()
#' @return Creates a Column class of literal value.
setMethod("lit", signature("ANY"),
function(x) {
- jc <- callJStatic("org.apache.spark.sql.functions", "lit", ifelse(class(x) == "Column", x@jc, x))
+ jc <- callJStatic("org.apache.spark.sql.functions",
+ "lit",
+ ifelse(class(x) == "Column", x@jc, x))
column(jc)
})