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 80c0937 commit b24e3ccCopy full SHA for b24e3cc
sql/hive/src/test/scala/org/apache/spark/sql/hive/orc/HiveOrcFilterSuite.scala
@@ -47,7 +47,10 @@ class HiveOrcFilterSuite extends OrcTest with TestHiveSingleton {
47
checker: (SearchArgument) => Unit): Unit = {
48
val output = predicate.collect { case a: Attribute => a }.distinct
49
val query = df
50
- .select(output.map(e => Column(e)): _*)
+ // SPARK-25557
51
+ // The following select will flatten the nested data structure,
52
+ // so comment it out for now until we find a better approach.
53
+ // .select(output.map(e => Column(e)): _*)
54
.where(Column(predicate))
55
56
var maybeRelation: Option[HadoopFsRelation] = None
0 commit comments