This is an automated email from the ASF dual-hosted git repository.
sbadhya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/master by this push:
new 0b1c28c89de HIVE-25972: HIVE_VECTORIZATION_USE_ROW_DESERIALIZE in
hiveconf.java imply default value is false, in fact the default value is 'true'
(#3824) (Kokila N reviewed by Sourabh Badhya)
0b1c28c89de is described below
commit 0b1c28c89de8a30d1e65e8d6f3e11b763792f9f8
Author: kokila-19 <[email protected]>
AuthorDate: Wed Feb 28 18:34:22 2024 +0530
HIVE-25972: HIVE_VECTORIZATION_USE_ROW_DESERIALIZE in hiveconf.java imply
default value is false, in fact the default value is 'true' (#3824) (Kokila N
reviewed by Sourabh Badhya)
---
common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
index 8ac1fd313c9..b9eccc19e1e 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -4652,7 +4652,7 @@ public class HiveConf extends Configuration {
"The default value is true."),
HIVE_VECTORIZATION_USE_ROW_DESERIALIZE("hive.vectorized.use.row.serde.deserialize",
true,
"This flag should be set to true to enable vectorizing using row
deserialize.\n" +
- "The default value is false."),
+ "The default value is true."),
HIVE_VECTORIZATION_ROW_DESERIALIZE_INPUTFORMAT_EXCLUDES(
"hive.vectorized.row.serde.inputformat.excludes",
"org.apache.parquet.hadoop.ParquetInputFormat,org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat",