Skip to content
Snippets Groups Projects
Commit 2df882ef authored by Cheng Lian's avatar Cheng Lian
Browse files

[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.
parent 59b0606f
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment