aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2015-08-03 12:06:58 -0700
committerReynold Xin <rxin@databricks.com>2015-08-03 12:06:58 -0700
commit703e44bff19f4c394f6f9bff1ce9152cdc68c51e (patch)
treedc07339872fc8a0d132d28c664cef59e0e225b5f /sql
parent7a9d09f0bb472a1671d3457e1f7108f4c2eb4121 (diff)
downloadspark-703e44bff19f4c394f6f9bff1ce9152cdc68c51e.tar.gz
spark-703e44bff19f4c394f6f9bff1ce9152cdc68c51e.tar.bz2
spark-703e44bff19f4c394f6f9bff1ce9152cdc68c51e.zip
[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
Diffstat (limited to 'sql')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala b/sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
index 387960c4b4..41ba1c7fe0 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
@@ -200,7 +200,7 @@ private[spark] object SQLConf {
val IN_MEMORY_PARTITION_PRUNING =
booleanConf("spark.sql.inMemoryColumnarStorage.partitionPruning",
- defaultValue = Some(false),
+ defaultValue = Some(true),
doc = "When true, enable partition pruning for in-memory columnar tables.",
isPublic = false)