Skip to content
Snippets Groups Projects
Commit 703e44bf authored by Cheng Lian's avatar Cheng Lian Committed by Reynold Xin
Browse files

[SPARK-9554] [SQL] Enables in-memory partition pruning by default

Author: Cheng Lian <lian@databricks.com>

Closes #7895 from liancheng/spark-9554/enable-in-memory-partition-pruning and squashes the following commits:

67c403e [Cheng Lian] Enables in-memory partition pruning by default
parent 7a9d09f0
No related branches found
No related tags found
No related merge requests found
...@@ -200,7 +200,7 @@ private[spark] object SQLConf { ...@@ -200,7 +200,7 @@ private[spark] object SQLConf {
val IN_MEMORY_PARTITION_PRUNING = val IN_MEMORY_PARTITION_PRUNING =
booleanConf("spark.sql.inMemoryColumnarStorage.partitionPruning", booleanConf("spark.sql.inMemoryColumnarStorage.partitionPruning",
defaultValue = Some(false), defaultValue = Some(true),
doc = "When true, enable partition pruning for in-memory columnar tables.", doc = "When true, enable partition pruning for in-memory columnar tables.",
isPublic = false) isPublic = false)
......
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