spark git commit: [SPARK-14672][SQL] Move HiveContext analyze logic to AnalyzeTable

2016-04-16 Thread yhuai
Repository: spark Updated Branches: refs/heads/master 5cefecc95 -> 3394b12c3 [SPARK-14672][SQL] Move HiveContext analyze logic to AnalyzeTable ## What changes were proposed in this pull request? Move the implementation of `hiveContext.analyze` to the command of `AnalyzeTable`. ## How was

spark git commit: [SPARK-14647][SQL] Group SQLContext/HiveContext state into SharedState

2016-04-16 Thread yhuai
Repository: spark Updated Branches: refs/heads/master 3f49afee9 -> 5cefecc95 [SPARK-14647][SQL] Group SQLContext/HiveContext state into SharedState ## What changes were proposed in this pull request? This patch adds a SharedState that groups state shared across multiple SQLContexts. This is

spark git commit: [SPARK-14683][DOCUMENTATION] Configure external links in ScalaDoc

2016-04-16 Thread rxin
Repository: spark Updated Branches: refs/heads/master 7319fcc1c -> 3f49afee9 [SPARK-14683][DOCUMENTATION] Configure external links in ScalaDoc Right now Spark's Scaladoc does not link to Scala standard library and other dependencies. This would bother Spark starters because they may be not

spark git commit: [SPARK-14677][SQL] follow up: make max iter num config internal

2016-04-16 Thread yhuai
Repository: spark Updated Branches: refs/heads/master 36da5e323 -> 7319fcc1c [SPARK-14677][SQL] follow up: make max iter num config internal ## What changes were proposed in this pull request? This is a follow-up to make the max iteration number an internal config. ## How was this patch

spark git commit: [SPARK-14605][ML][PYTHON] Changed Python to use unicode UIDs for spark.ml Identifiable

2016-04-16 Thread jkbradley
Repository: spark Updated Branches: refs/heads/master 9f678e975 -> 36da5e323 [SPARK-14605][ML][PYTHON] Changed Python to use unicode UIDs for spark.ml Identifiable ## What changes were proposed in this pull request? Python spark.ml Identifiable classes use UIDs of type str, but they should

spark git commit: [MINOR] Remove inappropriate type notation and extra anonymous closure within functional transformations

2016-04-16 Thread srowen
Repository: spark Updated Branches: refs/heads/master 527c780bb -> 9f678e975 [MINOR] Remove inappropriate type notation and extra anonymous closure within functional transformations ## What changes were proposed in this pull request? This PR removes - Inappropriate type notations For

spark git commit: Revert "[SPARK-13363][SQL] support Aggregator in RelationalGroupedDataset"

2016-04-16 Thread rxin
Repository: spark Updated Branches: refs/heads/master 12854464c -> 527c780bb Revert "[SPARK-13363][SQL] support Aggregator in RelationalGroupedDataset" This reverts commit 12854464c4fa30c4df3b5b17bd8914d048dbf4a9. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit:

spark git commit: [SPARK-13363][SQL] support Aggregator in RelationalGroupedDataset

2016-04-16 Thread rxin
Repository: spark Updated Branches: refs/heads/master f4be0946a -> 12854464c [SPARK-13363][SQL] support Aggregator in RelationalGroupedDataset ## What changes were proposed in this pull request? set the input encoder for `TypedColumn` in `RelationalGroupedDataset.agg`. ## How was this patch