Skip to content

Commit d0fccc3

Browse files
committed
merge with commit bc0f30
2 parents 9acdb98 + bc0f30d commit d0fccc3

File tree

779 files changed

+22870
-10166
lines changed

Some content is hidden

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

779 files changed

+22870
-10166
lines changed

.rat-excludes

+1
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,4 @@ gen-java.*
8484
org.apache.spark.sql.sources.DataSourceRegister
8585
org.apache.spark.scheduler.SparkHistoryListenerFactory
8686
.*parquet
87+
LZ4BlockInputStream.java

LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/
@@ -237,7 +236,7 @@ The following components are provided under a BSD-style license. See project lin
237236
The text of each license is also included at licenses/LICENSE-[project].txt.
238237

239238
(BSD 3 Clause) netlib core (com.github.fommil.netlib:core:1.1.2 - https://github.com/fommil/netlib-java/core)
240-
(BSD 3 Clause) JPMML-Model (org.jpmml:pmml-model:1.1.15 - https://github.com/jpmml/jpmml-model)
239+
(BSD 3 Clause) JPMML-Model (org.jpmml:pmml-model:1.2.7 - https://github.com/jpmml/jpmml-model)
241240
(BSD 3-clause style license) jblas (org.jblas:jblas:1.2.4 - http://jblas.org/)
242241
(BSD License) AntLR Parser Generator (antlr:antlr:2.7.7 - http://www.antlr.org/)
243242
(BSD licence) ANTLR ST4 4.0.4 (org.antlr:ST4:4.0.4 - http://www.stringtemplate.org)

NOTICE

+8-1
Original file line numberDiff line numberDiff line change
@@ -606,4 +606,11 @@ Vis.js uses and redistributes the following third-party libraries:
606606

607607
- keycharm
608608
https://github.com/AlexDM0/keycharm
609-
The MIT License
609+
The MIT License
610+
611+
===============================================================================
612+
613+
The CSS style for the navigation sidebar of the documentation was originally
614+
submitted by Óscar Nájera for the scikit-learn project. The scikit-learn project
615+
is distributed under the 3-Clause BSD license.
616+
===============================================================================

R/pkg/.lintr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
linters: with_defaults(line_length_linter(100), camel_case_linter = NULL, open_curly_linter(allow_single_line = TRUE), closed_curly_linter(allow_single_line = TRUE))
1+
linters: with_defaults(line_length_linter(100), camel_case_linter = NULL, open_curly_linter(allow_single_line = TRUE), closed_curly_linter(allow_single_line = TRUE), commented_code_linter = NULL)
22
exclusions: list("inst/profile/general.R" = 1, "inst/profile/shell.R")

R/pkg/DESCRIPTION

+1-1
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.6.0
4+
Version: 2.0.0
55
Date: 2013-09-09
66
Author: The Apache Software Foundation
77
Maintainer: Shivaram Venkataraman <[email protected]>

R/pkg/NAMESPACE

+17-6
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ exportMethods("arrange",
2727
"attach",
2828
"cache",
2929
"collect",
30+
"colnames",
31+
"colnames<-",
3032
"coltypes",
33+
"coltypes<-",
3134
"columns",
3235
"count",
3336
"cov",
@@ -56,6 +59,7 @@ exportMethods("arrange",
5659
"mutate",
5760
"na.omit",
5861
"names",
62+
"names<-",
5963
"ncol",
6064
"nrow",
6165
"orderBy",
@@ -88,7 +92,9 @@ exportMethods("arrange",
8892
"with",
8993
"withColumn",
9094
"withColumnRenamed",
91-
"write.df")
95+
"write.df",
96+
"write.json",
97+
"write.parquet")
9298

9399
exportClasses("Column")
94100

@@ -123,15 +129,17 @@ exportMethods("%in%",
123129
"count",
124130
"countDistinct",
125131
"crc32",
126-
"cumeDist",
132+
"cume_dist",
127133
"date_add",
128134
"date_format",
129135
"date_sub",
130136
"datediff",
131137
"dayofmonth",
132138
"dayofyear",
133-
"denseRank",
139+
"decode",
140+
"dense_rank",
134141
"desc",
142+
"encode",
135143
"endsWith",
136144
"exp",
137145
"explode",
@@ -188,7 +196,7 @@ exportMethods("%in%",
188196
"next_day",
189197
"ntile",
190198
"otherwise",
191-
"percentRank",
199+
"percent_rank",
192200
"pmod",
193201
"quarter",
194202
"rand",
@@ -200,7 +208,7 @@ exportMethods("%in%",
200208
"rint",
201209
"rlike",
202210
"round",
203-
"rowNumber",
211+
"row_number",
204212
"rpad",
205213
"rtrim",
206214
"second",
@@ -221,6 +229,7 @@ exportMethods("%in%",
221229
"stddev",
222230
"stddev_pop",
223231
"stddev_samp",
232+
"struct",
224233
"sqrt",
225234
"startsWith",
226235
"substr",
@@ -260,9 +269,11 @@ export("as.DataFrame",
260269
"createExternalTable",
261270
"dropTempTable",
262271
"jsonFile",
272+
"read.json",
263273
"loadDF",
264274
"parquetFile",
265275
"read.df",
276+
"read.parquet",
266277
"sql",
267278
"table",
268279
"tableNames",
@@ -276,4 +287,4 @@ export("structField",
276287
"structType",
277288
"structType.jobj",
278289
"structType.structField",
279-
"print.structType")
290+
"print.structType")

0 commit comments

Comments
 (0)