aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/NAMESPACE
diff options
context:
space:
mode:
authorYu ISHIKAWA <yuu.ishikawa@gmail.com>2015-08-16 23:33:20 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-08-16 23:33:20 -0700
commit26e760581fdf7ca913da93fa80e73b7ddabcedf6 (patch)
treedad5d9a89680c2a84a844d3d3a885cbb672f7073 /R/pkg/NAMESPACE
parentae2370e72f93db8a28b262e8252c55fe1fc9873c (diff)
downloadspark-26e760581fdf7ca913da93fa80e73b7ddabcedf6.tar.gz
spark-26e760581fdf7ca913da93fa80e73b7ddabcedf6.tar.bz2
spark-26e760581fdf7ca913da93fa80e73b7ddabcedf6.zip
[SPARK-9871] [SPARKR] Add expression functions into SparkR which have a variable parameter
### Summary - Add `lit` function - Add `concat`, `greatest`, `least` functions I think we need to improve `collect` function in order to implement `struct` function. Since `collect` doesn't work with arguments which includes a nested `list` variable. It seems that a list against `struct` still has `jobj` classes. So it would be better to solve this problem on another issue. ### JIRA [[SPARK-9871] Add expression functions into SparkR which have a variable parameter - ASF JIRA](https://issues.apache.org/jira/browse/SPARK-9871) Author: Yu ISHIKAWA <yuu.ishikawa@gmail.com> Closes #8194 from yu-iskw/SPARK-9856.
Diffstat (limited to 'R/pkg/NAMESPACE')
-rw-r--r--R/pkg/NAMESPACE4
1 files changed, 4 insertions, 0 deletions
diff --git a/R/pkg/NAMESPACE b/R/pkg/NAMESPACE
index b2d92bdf48..fd9dfdf60e 100644
--- a/R/pkg/NAMESPACE
+++ b/R/pkg/NAMESPACE
@@ -98,6 +98,7 @@ exportMethods("abs",
"contains",
"cos",
"cosh",
+ "concat",
"countDistinct",
"desc",
"endsWith",
@@ -106,10 +107,13 @@ exportMethods("abs",
"floor",
"getField",
"getItem",
+ "greatest",
"hypot",
"isNotNull",
"isNull",
+ "lit",
"last",
+ "least",
"like",
"log",
"log10",