Skip to content

Commit 0aac83c

Browse files
committed
Merge pull request #117 from markhamstra/csd-1.5
SKIPME Fix versions and mis-merge
2 parents 9f90518 + 7758da1 commit 0aac83c

File tree

5 files changed

+4
-14
lines changed

5 files changed

+4
-14
lines changed

extras/java8-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.apache.spark</groupId>
2222
<artifactId>spark-parent_2.10</artifactId>
23-
<version>1.5.0-csd-1-SNAPSHOT</version>
23+
<version>1.5.1-csd-10-SNAPSHOT</version>
2424
<relativePath>../../pom.xml</relativePath>
2525
</parent>
2626

extras/kinesis-asl-assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.10</artifactId>
24-
<version>1.5.0-csd-1-SNAPSHOT</version>
24+
<version>1.5.1-csd-10-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extras/kinesis-asl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.apache.spark</groupId>
2222
<artifactId>spark-parent_2.10</artifactId>
23-
<version>1.5.0-csd-1-SNAPSHOT</version>
23+
<version>1.5.1-csd-10-SNAPSHOT</version>
2424
<relativePath>../../pom.xml</relativePath>
2525
</parent>
2626

extras/spark-ganglia-lgpl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.apache.spark</groupId>
2222
<artifactId>spark-parent_2.10</artifactId>
23-
<version>1.5.0-csd-1-SNAPSHOT</version>
23+
<version>1.5.1-csd-10-SNAPSHOT</version>
2424
<relativePath>../../pom.xml</relativePath>
2525
</parent>
2626

sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1756,14 +1756,4 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
17561756
df1.withColumn("diff", lit(0)))
17571757
}
17581758
}
1759-
1760-
test("SPARK-10389: order by non-attribute grouping expression on Aggregate") {
1761-
withTempTable("src") {
1762-
Seq((1, 1), (-1, 1)).toDF("key", "value").registerTempTable("src")
1763-
checkAnswer(sql("SELECT MAX(value) FROM src GROUP BY key + 1 ORDER BY key + 1"),
1764-
Seq(Row(1), Row(1)))
1765-
checkAnswer(sql("SELECT MAX(value) FROM src GROUP BY key + 1 ORDER BY (key + 1) * 2"),
1766-
Seq(Row(1), Row(1)))
1767-
}
1768-
}
17691759
}

0 commit comments

Comments
 (0)