Skip to content

Commit ad7f0f1

Browse files
committed
[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 <[email protected]> Closes #8473 from shivaram/in-namespace.
1 parent d41d6c4 commit ad7f0f1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

R/pkg/NAMESPACE

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ exportMethods("arrange",
4747
"join",
4848
"limit",
4949
"merge",
50+
"mutate",
51+
"na.omit",
5052
"names",
5153
"ncol",
5254
"nrow",
5355
"orderBy",
54-
"mutate",
55-
"names",
5656
"persist",
5757
"printSchema",
5858
"rbind",
@@ -82,7 +82,8 @@ exportMethods("arrange",
8282

8383
exportClasses("Column")
8484

85-
exportMethods("abs",
85+
exportMethods("%in%",
86+
"abs",
8687
"acos",
8788
"add_months",
8889
"alias",

0 commit comments

Comments
 (0)