spark git commit: [HOTFIX] Fix compilation break

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 819b0ea02 -> 9bf6a926a [HOTFIX] Fix compilation break Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9bf6a926 Tree:

spark git commit: [SPARK-13381][SQL] Support for loading CSV with a single function call

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 55d6fdf22 -> 819b0ea02 [SPARK-13381][SQL] Support for loading CSV with a single function call https://issues.apache.org/jira/browse/SPARK-13381 This PR adds the support to load CSV data directly by a single call with given paths. Also,

spark git commit: [SPARK-13321][SQL] Support nested UNION in parser

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 3d79f1065 -> 55d6fdf22 [SPARK-13321][SQL] Support nested UNION in parser JIRA: https://issues.apache.org/jira/browse/SPARK-13321 The following SQL can not be parsed with current parser: SELECT `u_1`.`id` FROM (((SELECT `t0`.`id`

spark git commit: [SPARK-3650][GRAPHX] Triangle Count handles reverse edges incorrectly

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 0f90f4e6a -> 3d79f1065 [SPARK-3650][GRAPHX] Triangle Count handles reverse edges incorrectly jegonzal ankurdave please could you review ## What changes were proposed in this pull request? Reworking of jegonzal PR #2495 to address the

spark git commit: [SPARK-13410][SQL] Support unionAll for DataFrames with UDT columns.

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 0cbadf28c -> 0f90f4e6a [SPARK-13410][SQL] Support unionAll for DataFrames with UDT columns. ## What changes were proposed in this pull request? This PR adds equality operators to UDT classes so that they can be correctly tested for

spark git commit: [SPARK-13271][SQL] Better error message if 'path' is not specified

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 76bd98d91 -> 0cbadf28c [SPARK-13271][SQL] Better error message if 'path' is not specified Improved the error message as per discussion in https://github.com/apache/spark/pull/11034#discussion_r52111238. Also made `path` and

spark git commit: [SPARK-13405][STREAMING][TESTS] Make sure no messages leak to the next test

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 03e62aa3f -> 76bd98d91 [SPARK-13405][STREAMING][TESTS] Make sure no messages leak to the next test ## What changes were proposed in this pull request? Fixed the test failure `org.apache.spark.sql.util.ContinuousQueryListenerSuite.event

[2/2] spark git commit: [SPARK-13080][SQL] Implement new Catalog API using Hive

2016-02-21 Thread rxin
[SPARK-13080][SQL] Implement new Catalog API using Hive ## What changes were proposed in this pull request? This is a step towards merging `SQLContext` and `HiveContext`. A new internal Catalog API was introduced in #10982 and extended in #11069. This patch introduces an implementation of this

[1/2] spark git commit: [SPARK-13080][SQL] Implement new Catalog API using Hive

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 7eb83fefd -> 6c3832b26 http://git-wip-us.apache.org/repos/asf/spark/blob/6c3832b2/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala -- diff --git

[1/2] spark git commit: [SPARK-13136][SQL] Create a dedicated Broadcast exchange operator

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master af441ddbd -> b6a873d6d http://git-wip-us.apache.org/repos/asf/spark/blob/b6a873d6/sql/core/src/main/scala/org/apache/spark/sql/execution/exchange/ShuffleExchange.scala --

[2/2] spark git commit: [SPARK-13136][SQL] Create a dedicated Broadcast exchange operator

2016-02-21 Thread rxin
[SPARK-13136][SQL] Create a dedicated Broadcast exchange operator Quite a few Spark SQL join operators broadcast one side of the join to all nodes. The are a few problems with this: - This conflates broadcasting (a data exchange) with joining. Data exchanges should be managed by a different

spark git commit: [SPARK-13420][SQL] Rename Subquery logical plan to SubqueryAlias

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 1a340da8d -> 0947f0989 [SPARK-13420][SQL] Rename Subquery logical plan to SubqueryAlias ## What changes were proposed in this pull request? This patch renames logical.Subquery to logical.SubqueryAlias, which is a more appropriate name for

spark git commit: [SPARK-13248][STREAMING] Remove deprecated Streaming APIs.

2016-02-21 Thread srowen
Repository: spark Updated Branches: refs/heads/master d9efe63ec -> 1a340da8d [SPARK-13248][STREAMING] Remove deprecated Streaming APIs. Remove deprecated Streaming APIs and adjust sample applications. Author: Luciano Resende Closes #11139 from

[1/2] spark git commit: [SPARK-12799] Simplify various string output for expressions

2016-02-21 Thread lian
Repository: spark Updated Branches: refs/heads/master d806ed343 -> d9efe63ec http://git-wip-us.apache.org/repos/asf/spark/blob/d9efe63e/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/CatalystSchemaConverter.scala

spark git commit: [SPARK-13416][GraphX] Add positive check for option 'numIter' in StronglyConnectedComponents

2016-02-21 Thread rxin
Repository: spark Updated Branches: refs/heads/master 792507128 -> d806ed343 [SPARK-13416][GraphX] Add positive check for option 'numIter' in StronglyConnectedComponents JIRA: https://issues.apache.org/jira/browse/SPARK-13416 ## What changes were proposed in this pull request? The output