Repository: spark Updated Branches: refs/heads/master 59b0606f3 -> 2df882ef1
[SPARK-5775] [SPARK-5508] [SQL] Re-enable Hive Parquet array reading tests Since SPARK-5508 has already been fixed. Author: Cheng Lian <[email protected]> Closes #8999 from liancheng/spark-5775.enable-array-tests. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/2df882ef Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/2df882ef Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/2df882ef Branch: refs/heads/master Commit: 2df882ef14d376f9e49380ff15a8a5e6997024a7 Parents: 59b0606 Author: Cheng Lian <[email protected]> Authored: Thu Oct 8 09:22:42 2015 -0700 Committer: Cheng Lian <[email protected]> Committed: Thu Oct 8 09:22:42 2015 -0700 ---------------------------------------------------------------------- .../src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/2df882ef/sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala ---------------------------------------------------------------------- diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala index ff2d0a3..905eb7a 100644 --- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala +++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala @@ -869,8 +869,7 @@ abstract class ParquetPartitioningTest extends QueryTest with SQLTestUtils with (1 to 10).map(i => Row(1, i, f"${i}_string"))) } - // Re-enable this after SPARK-5508 is fixed - ignore(s"SPARK-5775 read array from $table") { + test(s"SPARK-5775 read array from $table") { checkAnswer( sql(s"SELECT arrayField, p FROM $table WHERE p = 1"), (1 to 10).map(i => Row(1 to i, 1))) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
