zratkai commented on code in PR #1482:
URL: https://github.com/apache/orc/pull/1482#discussion_r1182447880
##########
java/core/src/java/org/apache/orc/impl/ParserUtils.java:
##########
@@ -459,10 +459,31 @@ public static ColumnVector[]
findColumnVectors(TypeDescription schema,
boolean isCaseSensitive,
VectorizedRowBatch batch) {
List<String> names = ParserUtils.splitName(source);
- ColumnFinder result = new ColumnFinder(schema, batch, names.size());
+ ColumnFinder result = new ColumnFinder(schema,
removeAcidColumnsFromVectorizedRowBatch(schema, batch), names.size());
findColumn(removeAcid(schema), names, isCaseSensitive, result);
return result.result;
}
+
Review Comment:
Changed according to this comment.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]