spark git commit: [SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata

2015-04-03 Thread lian
Repository: spark Updated Branches: refs/heads/master 440ea31b7 - c42c3fc7f [SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata https://issues.apache.org/jira/browse/SPARK-6575 Author: Yin Huai yh...@databricks.com This patch had conflicts when merged, resolved by

spark git commit: [SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata

2015-04-03 Thread lian
Repository: spark Updated Branches: refs/heads/branch-1.3 ac705aa83 - 0c1b78b72 [SPARK-6575][SQL] Converted Parquet Metastore tables no longer cache metadata https://issues.apache.org/jira/browse/SPARK-6575 Author: Yin Huai yh...@databricks.com This patch had conflicts when merged, resolved

spark git commit: [SPARK-6560][CORE] Do not suppress exceptions from writer.write.

2015-04-03 Thread srowen
Repository: spark Updated Branches: refs/heads/master 82701ee25 - b0d884f04 [SPARK-6560][CORE] Do not suppress exceptions from writer.write. If there is a failure in the Hadoop backend while calling writer.write, we should remember this original exception, and try to call writer.close(), but

spark git commit: [MLLIB] Remove println in LogisticRegression.scala

2015-04-03 Thread srowen
Repository: spark Updated Branches: refs/heads/master b0d884f04 - b52c7f9fc [MLLIB] Remove println in LogisticRegression.scala There's no corresponding printing in linear regression. Here was my previous PR (something weird happened and I can't reopen it)

spark git commit: [SPARK-6428] Turn on explicit type checking for public methods.

2015-04-03 Thread rxin
Repository: spark Updated Branches: refs/heads/master c42c3fc7f - 82701ee25 [SPARK-6428] Turn on explicit type checking for public methods. This builds on my earlier pull requests and turns on the explicit type checking in scalastyle. Author: Reynold Xin r...@databricks.com Closes #5342

spark git commit: [SPARK-6492][CORE] SparkContext.stop() can deadlock when DAGSchedulerEventProcessLoop dies

2015-04-03 Thread srowen
Repository: spark Updated Branches: refs/heads/master c23ba81b8 - 2c43ea38e [SPARK-6492][CORE] SparkContext.stop() can deadlock when DAGSchedulerEventProcessLoop dies I've added a timeout and retry loop around the SparkContext shutdown code that should fix this deadlock. If a SparkContext

spark git commit: [SPARK-5203][SQL] fix union with different decimal type

2015-04-03 Thread lian
Repository: spark Updated Branches: refs/heads/master dc6dff248 - c23ba81b8 [SPARK-5203][SQL] fix union with different decimal type When union non-decimal types with decimals, we use the following rules: - FIRST `intTypeToFixed`, then fixed union decimals with precision/scale p1/s2

spark git commit: Closes #3158

2015-04-03 Thread rxin
Repository: spark Updated Branches: refs/heads/master 88504b75e - ffe8cc9a2 Closes #3158 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ffe8cc9a Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ffe8cc9a Diff:

spark git commit: [SPARK-6688] [core] Always use resolved URIs in EventLoggingListener.

2015-04-03 Thread andrewor14
Repository: spark Updated Branches: refs/heads/master ffe8cc9a2 - 14632b794 [SPARK-6688] [core] Always use resolved URIs in EventLoggingListener. Author: Marcelo Vanzin van...@cloudera.com Closes #5340 from vanzin/SPARK-6688 and squashes the following commits: ccfddd9 [Marcelo Vanzin]

spark git commit: [SPARK-6688] [core] Always use resolved URIs in EventLoggingListener.

2015-04-03 Thread andrewor14
Repository: spark Updated Branches: refs/heads/branch-1.3 0c1b78b72 - f17a2fe9b [SPARK-6688] [core] Always use resolved URIs in EventLoggingListener. Author: Marcelo Vanzin van...@cloudera.com Closes #5340 from vanzin/SPARK-6688 and squashes the following commits: ccfddd9 [Marcelo Vanzin]

spark git commit: [Minor][SQL] Fix typo

2015-04-03 Thread srowen
Repository: spark Updated Branches: refs/heads/master 512a2f191 - dc6dff248 [Minor][SQL] Fix typo Just fix a typo. Author: Liang-Chi Hsieh vii...@gmail.com Closes #5352 from viirya/fix_a_typo and squashes the following commits: 303b2d2 [Liang-Chi Hsieh] Fix typo. Project:

spark git commit: [SPARK-6700] disable flaky test

2015-04-03 Thread andrewor14
Repository: spark Updated Branches: refs/heads/branch-1.3 f17a2fe9b - 3366af67b [SPARK-6700] disable flaky test Author: Davies Liu dav...@databricks.com Closes #5356 from davies/flaky and squashes the following commits: 08955f4 [Davies Liu] disable flaky test (cherry picked from commit

spark git commit: [SPARK-6700] disable flaky test

2015-04-03 Thread andrewor14
Repository: spark Updated Branches: refs/heads/master 26b415e15 - 9b40c17ab [SPARK-6700] disable flaky test Author: Davies Liu dav...@databricks.com Closes #5356 from davies/flaky and squashes the following commits: 08955f4 [Davies Liu] disable flaky test Project:

spark git commit: [SPARK-6647][SQL] Make trait StringComparison as BinaryPredicate and fix unit tests of string data source Filter

2015-04-03 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 14632b794 - 26b415e15 [SPARK-6647][SQL] Make trait StringComparison as BinaryPredicate and fix unit tests of string data source Filter Now trait `StringComparison` is a `BinaryExpression`. In fact, it should be a `BinaryPredicate`. By