[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-16 Thread mateiz
Github user mateiz commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37751624 Hey Michael, I really like the docs and API for this! I tried this out in spark-shell though and saw a few errors: * The built-in SQL seems to be case-sensitive

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread pwendell
Github user pwendell commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37716174 I think in the example in the PR description it should be `case class Person(name: String, age: Int)` otherwise there is a casting error. --- If your project is set up f

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37712122 Merged build finished. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37712123 All automated tests passed. Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/13189/ --- If your project

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread kayousterhout
Github user kayousterhout commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37711109 The examples that you added are awesome!!! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your pr

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread kayousterhout
Github user kayousterhout commented on a diff in the pull request: https://github.com/apache/spark/pull/146#discussion_r10632433 --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/ExpressionEvaluationSuite.scala --- @@ -0,0 +1,115 @@ +/* + * Licensed to th

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread kayousterhout
Github user kayousterhout commented on a diff in the pull request: https://github.com/apache/spark/pull/146#discussion_r10632425 --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/DistributionSuite.scala --- @@ -0,0 +1,174 @@ +/* + * Licensed to the Apache

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread kayousterhout
Github user kayousterhout commented on a diff in the pull request: https://github.com/apache/spark/pull/146#discussion_r10632329 --- Diff: examples/src/main/scala/org/apache/spark/sql/examples/HiveFromSpark.scala --- @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread kayousterhout
Github user kayousterhout commented on a diff in the pull request: https://github.com/apache/spark/pull/146#discussion_r10632314 --- Diff: bin/compute-classpath.sh --- @@ -33,23 +33,43 @@ fi # Build up classpath CLASSPATH="$SPARK_CLASSPATH:$FWDIR/conf" +# Support

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37710497 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not hav

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37710500 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have t

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37710426 One or more automated tests failed Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/13187/ --- If your p

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37710424 Merged build finished. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread aarondav
Github user aarondav commented on a diff in the pull request: https://github.com/apache/spark/pull/146#discussion_r10631616 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala --- @@ -0,0 +1,328 @@ +/* + * Licensed to the Apache Software Foun

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37708046 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have t

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/146#issuecomment-37708044 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not hav

[GitHub] spark pull request: SPARK-1251 Support for optimizing and executin...

2014-03-14 Thread marmbrus
GitHub user marmbrus opened a pull request: https://github.com/apache/spark/pull/146 SPARK-1251 Support for optimizing and executing structured queries This pull request adds support to Spark for working with structured data using a simple SQL dialect, HiveQL and a Scala Query DSL.