aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-08-26 18:13:07 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-08-26 18:13:16 -0700
commitcef707d2185ca7e0c5635fabe709d5e26915b5bb (patch)
tree346c2e02679577e47ec7c23b7976bcfff2cdd33d
parent0bdb800575ae2872e2655983a1be94dcf2e8c36b (diff)
downloadspark-cef707d2185ca7e0c5635fabe709d5e26915b5bb.tar.gz
spark-cef707d2185ca7e0c5635fabe709d5e26915b5bb.tar.bz2
spark-cef707d2185ca7e0c5635fabe709d5e26915b5bb.zip
[SPARK-10308] [SPARKR] Add %in% to the exported namespace
I also checked all the other functions defined in column.R, functions.R and DataFrame.R and everything else looked fine. cc yu-iskw Author: Shivaram Venkataraman <shivaram@cs.berkeley.edu> Closes #8473 from shivaram/in-namespace. (cherry picked from commit ad7f0f160be096c0fdae6e6cf7e3b6ba4a606de7) Signed-off-by: Shivaram Venkataraman <shivaram@cs.berkeley.edu>
-rw-r--r--R/pkg/NAMESPACE7
1 files changed, 4 insertions, 3 deletions
diff --git a/R/pkg/NAMESPACE b/R/pkg/NAMESPACE
index 3e5c89d779..5286c01986 100644
--- a/R/pkg/NAMESPACE
+++ b/R/pkg/NAMESPACE
@@ -47,12 +47,12 @@ exportMethods("arrange",
"join",
"limit",
"merge",
+ "mutate",
+ "na.omit",
"names",
"ncol",
"nrow",
"orderBy",
- "mutate",
- "names",
"persist",
"printSchema",
"rbind",
@@ -82,7 +82,8 @@ exportMethods("arrange",
exportClasses("Column")
-exportMethods("abs",
+exportMethods("%in%",
+ "abs",
"acos",
"add_months",
"alias",