aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2015-10-08 09:22:42 -0700
committerCheng Lian <lian@databricks.com>2015-10-08 09:22:42 -0700
commit2df882ef14d376f9e49380ff15a8a5e6997024a7 (patch)
treee29efe9673a3ec3553bf70b3163173fd4aff65c2
parent59b0606f334a192e110e6a79003145931f62b928 (diff)
downloadspark-2df882ef14d376f9e49380ff15a8a5e6997024a7.tar.gz
spark-2df882ef14d376f9e49380ff15a8a5e6997024a7.tar.bz2
spark-2df882ef14d376f9e49380ff15a8a5e6997024a7.zip
[SPARK-5775] [SPARK-5508] [SQL] Re-enable Hive Parquet array reading tests
Since SPARK-5508 has already been fixed. Author: Cheng Lian <lian@databricks.com> Closes #8999 from liancheng/spark-5775.enable-array-tests.
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/parquetSuites.scala3
1 files changed, 1 insertions, 2 deletions
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 ff2d0a35e3..905eb7a392 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)))