Skip to content

Commit

Permalink
Merge pull request #117 from markhamstra/csd-1.5
Browse files Browse the repository at this point in the history
SKIPME Fix versions and mis-merge
  • Loading branch information
markhamstra committed Nov 4, 2015
2 parents 9f90518 + 7758da1 commit 0aac83c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion extras/java8-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.spark</groupId>
<artifactId>spark-parent_2.10</artifactId>
<version>1.5.0-csd-1-SNAPSHOT</version>
<version>1.5.1-csd-10-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extras/kinesis-asl-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.spark</groupId>
<artifactId>spark-parent_2.10</artifactId>
<version>1.5.0-csd-1-SNAPSHOT</version>
<version>1.5.1-csd-10-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extras/kinesis-asl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.spark</groupId>
<artifactId>spark-parent_2.10</artifactId>
<version>1.5.0-csd-1-SNAPSHOT</version>
<version>1.5.1-csd-10-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extras/spark-ganglia-lgpl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.spark</groupId>
<artifactId>spark-parent_2.10</artifactId>
<version>1.5.0-csd-1-SNAPSHOT</version>
<version>1.5.1-csd-10-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
10 changes: 0 additions & 10 deletions sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1756,14 +1756,4 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
df1.withColumn("diff", lit(0)))
}
}

test("SPARK-10389: order by non-attribute grouping expression on Aggregate") {
withTempTable("src") {
Seq((1, 1), (-1, 1)).toDF("key", "value").registerTempTable("src")
checkAnswer(sql("SELECT MAX(value) FROM src GROUP BY key + 1 ORDER BY key + 1"),
Seq(Row(1), Row(1)))
checkAnswer(sql("SELECT MAX(value) FROM src GROUP BY key + 1 ORDER BY (key + 1) * 2"),
Seq(Row(1), Row(1)))
}
}
}

0 comments on commit 0aac83c

Please sign in to comment.