spark git commit: [SPARK-20889][SPARKR][FOLLOWUP] Clean up grouped doc for column methods

2017-07-04 Thread felixcheung
Repository: spark Updated Branches: refs/heads/master ce10545d3 -> e9a93f814 [SPARK-20889][SPARKR][FOLLOWUP] Clean up grouped doc for column methods ## What changes were proposed in this pull request? Add doc for methods that were left out, and fix various style and consistency issues.

spark git commit: [SPARK-21300][SQL] ExternalMapToCatalyst should null-check map key prior to converting to internal value.

2017-07-04 Thread wenchen
Repository: spark Updated Branches: refs/heads/branch-2.2 db21b6793 -> 770fd2a23 [SPARK-21300][SQL] ExternalMapToCatalyst should null-check map key prior to converting to internal value. ## What changes were proposed in this pull request? `ExternalMapToCatalyst` should null-check map key

spark git commit: [SPARK-21300][SQL] ExternalMapToCatalyst should null-check map key prior to converting to internal value.

2017-07-04 Thread wenchen
Repository: spark Updated Branches: refs/heads/master de14086e1 -> ce10545d3 [SPARK-21300][SQL] ExternalMapToCatalyst should null-check map key prior to converting to internal value. ## What changes were proposed in this pull request? `ExternalMapToCatalyst` should null-check map key prior

spark git commit: [SPARK-21295][SQL] Use qualified names in error message for missing references

2017-07-04 Thread wenchen
Repository: spark Updated Branches: refs/heads/master daabf425e -> de14086e1 [SPARK-21295][SQL] Use qualified names in error message for missing references ### What changes were proposed in this pull request? It is strange to see the following error message. Actually, the column is from

spark git commit: [SPARK-20256][SQL][BRANCH-2.1] SessionState should be created more lazily

2017-07-04 Thread wenchen
Repository: spark Updated Branches: refs/heads/branch-2.1 3ecef2491 -> 8f1ca6957 [SPARK-20256][SQL][BRANCH-2.1] SessionState should be created more lazily ## What changes were proposed in this pull request? `SessionState` is designed to be created lazily. However, in reality, it created

spark git commit: [MINOR][SPARKR] ignore Rplots.pdf test output after running R tests

2017-07-04 Thread felixcheung
Repository: spark Updated Branches: refs/heads/master cec392150 -> daabf425e [MINOR][SPARKR] ignore Rplots.pdf test output after running R tests ## What changes were proposed in this pull request? After running R tests in local build, it outputs Rplots.pdf. This one should be ignored in the

spark git commit: [SPARK-20889][SPARKR] Grouped documentation for WINDOW column methods

2017-07-04 Thread felixcheung
Repository: spark Updated Branches: refs/heads/master 4d6d8192c -> cec392150 [SPARK-20889][SPARKR] Grouped documentation for WINDOW column methods ## What changes were proposed in this pull request? Grouped documentation for column window methods. Author: actuaryzhang

spark git commit: [SPARK-21268][MLLIB] Move center calculations to a distributed map in KMeans

2017-07-04 Thread srowen
Repository: spark Updated Branches: refs/heads/master 1b50e0e0d -> 4d6d8192c [SPARK-21268][MLLIB] Move center calculations to a distributed map in KMeans ## What changes were proposed in this pull request? The scal() and creation of newCenter vector is done in the driver, after a

spark git commit: [SPARK-20256][SQL] SessionState should be created more lazily

2017-07-04 Thread lixiao
Repository: spark Updated Branches: refs/heads/master a3c29fcbb -> 1b50e0e0d [SPARK-20256][SQL] SessionState should be created more lazily ## What changes were proposed in this pull request? `SessionState` is designed to be created lazily. However, in reality, it created immediately in

spark git commit: [SPARK-20256][SQL] SessionState should be created more lazily

2017-07-04 Thread lixiao
Repository: spark Updated Branches: refs/heads/branch-2.2 6fd39ea1c -> db21b6793 [SPARK-20256][SQL] SessionState should be created more lazily ## What changes were proposed in this pull request? `SessionState` is designed to be created lazily. However, in reality, it created immediately in

spark git commit: [MINOR][SPARK SUBMIT] Print out R file usage in spark-submit

2017-07-04 Thread srowen
Repository: spark Updated Branches: refs/heads/master 8ca4ebefa -> 2b1e94b9a [MINOR][SPARK SUBMIT] Print out R file usage in spark-submit ## What changes were proposed in this pull request? Currently, running the shell below: ```bash $ ./bin/spark-submit tmp.R a b c ``` with R file,

spark git commit: [MINOR] Add french stop word "les"

2017-07-04 Thread srowen
Repository: spark Updated Branches: refs/heads/master a848d552e -> 8ca4ebefa [MINOR] Add french stop word "les" ## What changes were proposed in this pull request? Added "les" as french stop word (plurial of le) Author: Thomas Decaux Closes #18514 from ebuildy/patch-1.