akkio-97 commented on a change in pull request #3943:
URL:
https://github.com/apache/carbondata/pull/3943#discussion_r492730939##########
File path: core/src/main/java/org/apache/carbondata/core/scan/result/vector/impl/directread/ColumnarVectorWrapperDirectWithDeleteDeltaAndInvertedIndex.java
##########
@@ -78,6 +80,17 @@ public void putNull(int rowId) {
}
}
+ @Override
+ public void putObject(int rowId, Object obj) {
+ if (!deletedRows.get(rowId)) {
+ if (nullBits.get(rowId)) {
+ columnVector.putNull(counter++);
Review comment:
Have raised a separate jira to address this issue - CARBONDATA-4004
----------------------------------------------------------------
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:
[hidden email]