Skip to content

Commit f6858f6

Browse files
committed
Merge branch 'master' into groupby-retain
Conflicts: sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala
2 parents b8b87e1 + 2992623 commit f6858f6

File tree

265 files changed

+15026
-3421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+15026
-3421
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ scalastyle.txt
6565
scalastyle-output.xml
6666
R-unit-tests.log
6767
R/unit-tests.out
68+
python/lib/pyspark.zip
6869

6970
# For Hive
7071
metastore_db/

.rat-excludes

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ graphlib-dot.min.js
3636
sorttable.js
3737
vis.min.js
3838
vis.min.css
39-
vis.map
4039
.*avsc
4140
.*txt
4241
.*json
@@ -74,5 +73,12 @@ logs
7473
.*scalastyle-output.xml
7574
.*dependency-reduced-pom.xml
7675
known_translations
76+
json_expectation
77+
local-1422981759269/*
78+
local-1422981780767/*
79+
local-1425081759269/*
80+
local-1426533911241/*
81+
local-1426633911242/*
82+
local-1430917381534/*
7783
DESCRIPTION
7884
NAMESPACE

R/pkg/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Suggests:
1515
Description: R frontend for Spark
1616
License: Apache License (== 2.0)
1717
Collate:
18+
'schema.R'
1819
'generics.R'
1920
'jobj.R'
2021
'RDD.R'
2122
'pairRDD.R'
22-
'schema.R'
2323
'column.R'
2424
'group.R'
2525
'DataFrame.R'

R/pkg/NAMESPACE

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export("print.jobj")
99

1010
exportClasses("DataFrame")
1111

12-
exportMethods("cache",
12+
exportMethods("arrange",
13+
"cache",
1314
"collect",
1415
"columns",
1516
"count",
@@ -20,21 +21,24 @@ exportMethods("cache",
2021
"explain",
2122
"filter",
2223
"first",
24+
"group_by",
2325
"groupBy",
2426
"head",
2527
"insertInto",
2628
"intersect",
2729
"isLocal",
2830
"join",
29-
"length",
3031
"limit",
3132
"orderBy",
33+
"mutate",
3234
"names",
3335
"persist",
3436
"printSchema",
3537
"registerTempTable",
38+
"rename",
3639
"repartition",
3740
"sampleDF",
41+
"sample_frac",
3842
"saveAsParquetFile",
3943
"saveAsTable",
4044
"saveDF",
@@ -43,7 +47,7 @@ exportMethods("cache",
4347
"selectExpr",
4448
"show",
4549
"showDF",
46-
"sortDF",
50+
"summarize",
4751
"take",
4852
"unionAll",
4953
"unpersist",
@@ -73,6 +77,8 @@ exportMethods("abs",
7377
"max",
7478
"mean",
7579
"min",
80+
"n",
81+
"n_distinct",
7682
"rlike",
7783
"sqrt",
7884
"startsWith",
@@ -101,9 +107,6 @@ export("cacheTable",
101107
"tables",
102108
"uncacheTable")
103109

104-
export("sparkRSQL.init",
105-
"sparkRHive.init")
106-
107110
export("structField",
108111
"structField.jobj",
109112
"structField.character",

0 commit comments

Comments
 (0)