spark git commit: [SQL] Make date/time functions more consistent with other database systems.

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master a53d13f7a - 3427937ea [SQL] Make date/time functions more consistent with other database systems. This pull request fixes some of the problems in #6981. - Added date functions to `__all__` so they get exposed - Rename day_of_month -

spark git commit: [SPARK-9094] [PARENT] Increased io.dropwizard.metrics from 3.1.0 to 3.1.2

2015-07-19 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.4 59838280f - 6834d96a6 [SPARK-9094] [PARENT] Increased io.dropwizard.metrics from 3.1.0 to 3.1.2 We are running Spark 1.4.0 in production and ran into problems because after a network hiccup (which happens often in our current

spark git commit: [SPARK-9094] [PARENT] Increased io.dropwizard.metrics from 3.1.0 to 3.1.2

2015-07-19 Thread srowen
Repository: spark Updated Branches: refs/heads/master 9b644c413 - 344d1567e [SPARK-9094] [PARENT] Increased io.dropwizard.metrics from 3.1.0 to 3.1.2 We are running Spark 1.4.0 in production and ran into problems because after a network hiccup (which happens often in our current environment)

spark git commit: [SPARK-8199][SQL] follow up; revert change in test

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master 344d1567e - a53d13f7a [SPARK-8199][SQL] follow up; revert change in test rxin / davies Sorry for that unnecessary change. And thanks again for all your support! Author: Tarek Auel tarek.a...@googlemail.com Closes #7505 from

spark git commit: [SPARK-9179] [BUILD] Allows committers to specify primary author of the PR to be merged

2015-07-19 Thread lian
Repository: spark Updated Branches: refs/heads/master 3427937ea - bc24289f5 [SPARK-9179] [BUILD] Allows committers to specify primary author of the PR to be merged It's a common case that some contributor contributes an initial version of a feature/bugfix, and later on some other people

spark git commit: [SPARK-8638] [SQL] Window Function Performance Improvements

2015-07-19 Thread yhuai
Repository: spark Updated Branches: refs/heads/master 04c1b49f5 - a9a0d0ceb [SPARK-8638] [SQL] Window Function Performance Improvements ## Description Performance improvements for Spark Window functions. This PR will also serve as the basis for moving away from Hive UDAFs to Spark UDAFs. See

spark git commit: Closes #6775 since it is subsumbed by other patches.

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master a9a0d0ceb - 89d135851 Closes #6775 since it is subsumbed by other patches. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/89d13585 Tree:

spark git commit: [SPARK-9166][SQL][PYSPARK] Capture and hide IllegalArgumentException in Python API

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master 89d135851 - 9b644c413 [SPARK-9166][SQL][PYSPARK] Capture and hide IllegalArgumentException in Python API JIRA: https://issues.apache.org/jira/browse/SPARK-9166 Simply capture and hide `IllegalArgumentException` in Python API. Author:

spark git commit: [HOTFIX] [SQL] Fixes compilation error introduced by PR #7506

2015-07-19 Thread lian
Repository: spark Updated Branches: refs/heads/master bc24289f5 - 34ed82bb4 [HOTFIX] [SQL] Fixes compilation error introduced by PR #7506 PR #7506 breaks master build because of compilation error. Note that #7506 itself looks good, but it seems that `git merge` did something stupid. Author:

spark git commit: [SPARK-8638] [SQL] Window Function Performance Improvements - Cleanup

2015-07-19 Thread yhuai
Repository: spark Updated Branches: refs/heads/master a803ac3e0 - 7a8124534 [SPARK-8638] [SQL] Window Function Performance Improvements - Cleanup This PR contains a few clean-ups that are a part of SPARK-8638: a few style issues got fixed, and a few tests were moved. Git commit message is

spark git commit: [SPARK-8241][SQL] string function: concat_ws.

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master 7a8124534 - 163e3f1df [SPARK-8241][SQL] string function: concat_ws. I also changed the semantics of concat w.r.t. null back to the same behavior as Hive. That is to say, concat now returns null if any input is null. Author: Reynold Xin

spark git commit: [SPARK-9021] [PYSPARK] Change RDD.aggregate() to do reduce(mapPartitions()) instead of mapPartitions.fold()

2015-07-19 Thread davies
Repository: spark Updated Branches: refs/heads/branch-1.4 6834d96a6 - a3c853c3f [SPARK-9021] [PYSPARK] Change RDD.aggregate() to do reduce(mapPartitions()) instead of mapPartitions.fold() I'm relatively new to Spark and functional programming, so forgive me if this pull request is just a

spark git commit: [SPARK-9021] [PYSPARK] Change RDD.aggregate() to do reduce(mapPartitions()) instead of mapPartitions.fold()

2015-07-19 Thread davies
Repository: spark Updated Branches: refs/heads/master 34ed82bb4 - a803ac3e0 [SPARK-9021] [PYSPARK] Change RDD.aggregate() to do reduce(mapPartitions()) instead of mapPartitions.fold() I'm relatively new to Spark and functional programming, so forgive me if this pull request is just a result

spark git commit: [SPARK-9172][SQL] Make DecimalPrecision support for Intersect and Except

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master 93eb2acfb - d743bec64 [SPARK-9172][SQL] Make DecimalPrecision support for Intersect and Except JIRA: https://issues.apache.org/jira/browse/SPARK-9172 Simply make `DecimalPrecision` support for `Intersect` and `Except` in addition to

spark git commit: Code review feedback for the previous patch.

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/master 930253e07 - 5bdf16da9 Code review feedback for the previous patch. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/5bdf16da Tree:

spark git commit: [SPARK-8052] [SQL] Use java.math.BigDecimal for casting String to Decimal instead of using toDouble

2015-07-19 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.4 a3c853c3f - 180ae25d9 [SPARK-8052] [SQL] Use java.math.BigDecimal for casting String to Decimal instead of using toDouble JIRA: https://issues.apache.org/jira/browse/SPARK-8052 Author: Liang-Chi Hsieh vii...@gmail.com Closes #6645