Skip to content

Commit aa1764b

Browse files
dongjoon-hyungatorsmile
authored andcommitted
[SPARK-22279][SQL] Turn on spark.sql.hive.convertMetastoreOrc by default
## What changes were proposed in this pull request? Like Parquet, this PR aims to turn on `spark.sql.hive.convertMetastoreOrc` by default. ## How was this patch tested? Pass all the existing test cases. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #19499 from dongjoon-hyun/SPARK-22279.
1 parent 18b75d4 commit aa1764b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private[spark] object HiveUtils extends Logging {
109109
.doc("When set to true, the built-in ORC reader and writer are used to process " +
110110
"ORC tables created by using the HiveQL syntax, instead of Hive serde.")
111111
.booleanConf
112-
.createWithDefault(false)
112+
.createWithDefault(true)
113113

114114
val HIVE_METASTORE_SHARED_PREFIXES = buildConf("spark.sql.hive.metastore.sharedPrefixes")
115115
.doc("A comma separated list of class prefixes that should be loaded using the classloader " +

0 commit comments

Comments
 (0)