kasakrisz commented on a change in pull request #2264:
URL: https://github.com/apache/hive/pull/2264#discussion_r647582736
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/io/orc/VectorizedOrcAcidRowBatchReader.java
##########
@@ -948,7 +978,7 @@ public boolean next(NullWritable key, VectorizedRowBatch
value) throws IOExcepti
// This loop fills up the selected[] vector with all the index positions
that are selected.
for (int setBitIndex = selectedBitSet.nextSetBit(0), selectedItr = 0;
setBitIndex >= 0;
- setBitIndex = selectedBitSet.nextSetBit(setBitIndex+1),
++selectedItr) {
+ setBitIndex = selectedBitSet.nextSetBit(setBitIndex + 1),
++selectedItr) {
Review comment:
reverted
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]