This is an automated email from the ASF dual-hosted git repository.
hashutosh 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 657b510 HIVE-22880 : ACID: All delete event readers should ignore ORC
SARGs (Gopal V via Rajesh Balamohan)
657b510 is described below
commit 657b5107a34a205aae76fde42020453f04f40ead
Author: Gopal V <[email protected]>
AuthorDate: Thu Feb 20 19:26:51 2020 -0800
HIVE-22880 : ACID: All delete event readers should ignore ORC SARGs (Gopal
V via Rajesh Balamohan)
Signed-off-by: Ashutosh Chauhan <[email protected]>
---
.../apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java
b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java
index 2543dc6..0361872 100644
---
a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java
+++
b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java
@@ -236,6 +236,7 @@ public class VectorizedOrcAcidRowBatchReader
// Set the range on the deleteEventReaderOptions to 0 to INTEGER_MAX
because
// we always want to read all the delete delta files.
deleteEventReaderOptions.range(0, Long.MAX_VALUE);
+ deleteEventReaderOptions.searchArgument(null, null);
keyInterval = findMinMaxKeys(orcSplit, conf, deleteEventReaderOptions);
DeleteEventRegistry der;
try {