We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6525d8e commit 3b3e205Copy full SHA for 3b3e205
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -524,9 +524,7 @@ class HiveQuerySuite extends HiveComparisonTest {
524
def collectResults(rdd: SchemaRDD): Set[(String, String)] =
525
rdd.collect().map {
526
case Row(key: String, value: String) => key -> value
527
- case Row(kv: String) => kv match {
528
- case KV(key, value) => key -> value
529
- }
+ case Row(KV(key, value)) => key -> value
530
}.toSet
531
clear()
532
0 commit comments