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 1132e47 commit dc0b663Copy full SHA for dc0b663
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/PruningSuite.scala
@@ -26,6 +26,11 @@ import scala.collection.JavaConversions._
26
* A set of test cases that validate partition and column pruning.
27
*/
28
class PruningSuite extends HiveComparisonTest {
29
+ // Column/partition pruning is not implemented for `InMemoryColumnarTableScan` yet, need to reset
30
+ // the environment to ensure all referenced tables in this suites are not cached in-memory.
31
+ // Refer to https://issues.apache.org/jira/browse/SPARK-2283 for details.
32
+ TestHive.reset()
33
+
34
// Column pruning tests
35
36
createPruningTest("Column pruning - with partitioned table",
0 commit comments