Skip to content

Commit f4243b9

Browse files
committed
Merge remote-tracking branch 'apache/master' into dependency-audits
Conflicts: dev/run-tests-jenkins dev/sparktestsupport/modules.py
2 parents 0c8153d + 476f434 commit f4243b9

File tree

1,339 files changed

+57205
-25081
lines changed

Some content is hidden

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

1,339 files changed

+57205
-25081
lines changed

.rat-excludes

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,8 @@ TAGS
1515
RELEASE
1616
control
1717
docs
18-
docker.properties.template
19-
fairscheduler.xml.template
20-
spark-defaults.conf.template
21-
log4j.properties
22-
log4j.properties.template
23-
metrics.properties
24-
metrics.properties.template
2518
slaves
26-
slaves.template
27-
spark-env.sh
2819
spark-env.cmd
29-
spark-env.sh.template
30-
log4j-defaults.properties
31-
log4j-defaults-repl.properties
3220
bootstrap-tooltip.js
3321
jquery-1.11.1.min.js
3422
d3.min.js

LICENSE

Lines changed: 21 additions & 680 deletions
Large diffs are not rendered by default.

NOTICE

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,38 @@ Copyright 2009-2013 The Apache Software Foundation
572572

573573
Apache Avro IPC
574574
Copyright 2009-2013 The Apache Software Foundation
575+
576+
577+
Vis.js
578+
Copyright 2010-2015 Almende B.V.
579+
580+
Vis.js is dual licensed under both
581+
582+
* The Apache 2.0 License
583+
http://www.apache.org/licenses/LICENSE-2.0
584+
585+
and
586+
587+
* The MIT License
588+
http://opensource.org/licenses/MIT
589+
590+
Vis.js may be distributed under either license.
591+
592+
593+
Vis.js uses and redistributes the following third-party libraries:
594+
595+
- component-emitter
596+
https://github.com/component/emitter
597+
The MIT License
598+
599+
- hammer.js
600+
http://hammerjs.github.io/
601+
The MIT License
602+
603+
- moment.js
604+
http://momentjs.com/
605+
The MIT License
606+
607+
- keycharm
608+
https://github.com/AlexDM0/keycharm
609+
The MIT License

R/pkg/DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: SparkR
22
Type: Package
33
Title: R frontend for Spark
4-
Version: 1.5.0
4+
Version: 1.6.0
55
Date: 2013-09-09
66
Author: The Apache Software Foundation
77
Maintainer: Shivaram Venkataraman <[email protected]>
@@ -33,4 +33,5 @@ Collate:
3333
'mllib.R'
3434
'serialize.R'
3535
'sparkR.R'
36+
'stats.R'
3637
'utils.R'

R/pkg/NAMESPACE

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,13 @@ export("setJobGroup",
2323
exportClasses("DataFrame")
2424

2525
exportMethods("arrange",
26+
"attach",
2627
"cache",
2728
"collect",
2829
"columns",
2930
"count",
31+
"cov",
32+
"corr",
3033
"crosstab",
3134
"describe",
3235
"dim",
@@ -38,6 +41,7 @@ exportMethods("arrange",
3841
"fillna",
3942
"filter",
4043
"first",
44+
"freqItems",
4145
"group_by",
4246
"groupBy",
4347
"head",
@@ -47,12 +51,12 @@ exportMethods("arrange",
4751
"join",
4852
"limit",
4953
"merge",
54+
"mutate",
55+
"na.omit",
5056
"names",
5157
"ncol",
5258
"nrow",
5359
"orderBy",
54-
"mutate",
55-
"names",
5660
"persist",
5761
"printSchema",
5862
"rbind",
@@ -61,6 +65,7 @@ exportMethods("arrange",
6165
"repartition",
6266
"sample",
6367
"sample_frac",
68+
"sampleBy",
6469
"saveAsParquetFile",
6570
"saveAsTable",
6671
"saveDF",
@@ -69,9 +74,11 @@ exportMethods("arrange",
6974
"selectExpr",
7075
"show",
7176
"showDF",
77+
"subset",
7278
"summarize",
7379
"summary",
7480
"take",
81+
"transform",
7582
"unionAll",
7683
"unique",
7784
"unpersist",
@@ -82,7 +89,8 @@ exportMethods("arrange",
8289

8390
exportClasses("Column")
8491

85-
exportMethods("abs",
92+
exportMethods("%in%",
93+
"abs",
8694
"acos",
8795
"add_months",
8896
"alias",
@@ -101,6 +109,7 @@ exportMethods("abs",
101109
"cbrt",
102110
"ceil",
103111
"ceiling",
112+
"column",
104113
"concat",
105114
"concat_ws",
106115
"contains",
@@ -110,12 +119,14 @@ exportMethods("abs",
110119
"count",
111120
"countDistinct",
112121
"crc32",
122+
"cumeDist",
113123
"date_add",
114124
"date_format",
115125
"date_sub",
116126
"datediff",
117127
"dayofmonth",
118128
"dayofyear",
129+
"denseRank",
119130
"desc",
120131
"endsWith",
121132
"exp",
@@ -141,8 +152,10 @@ exportMethods("abs",
141152
"isNaN",
142153
"isNotNull",
143154
"isNull",
155+
"lag",
144156
"last",
145157
"last_day",
158+
"lead",
146159
"least",
147160
"length",
148161
"levenshtein",
@@ -168,17 +181,21 @@ exportMethods("abs",
168181
"nanvl",
169182
"negate",
170183
"next_day",
184+
"ntile",
171185
"otherwise",
186+
"percentRank",
172187
"pmod",
173188
"quarter",
174189
"rand",
175190
"randn",
191+
"rank",
176192
"regexp_extract",
177193
"regexp_replace",
178194
"reverse",
179195
"rint",
180196
"rlike",
181197
"round",
198+
"rowNumber",
182199
"rpad",
183200
"rtrim",
184201
"second",
@@ -221,7 +238,8 @@ exportMethods("agg")
221238
export("sparkRSQL.init",
222239
"sparkRHive.init")
223240

224-
export("cacheTable",
241+
export("as.DataFrame",
242+
"cacheTable",
225243
"clearCache",
226244
"createDataFrame",
227245
"createExternalTable",
@@ -244,3 +262,5 @@ export("structField",
244262
"structType.jobj",
245263
"structType.structField",
246264
"print.structType")
265+
266+
export("as.data.frame")

0 commit comments

Comments
 (0)