Posted by
GitBox on
Dec 17, 2020; 6:57am
URL: http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/GitHub-carbondata-akkio-97-opened-a-new-pull-request-4055-Handled-issue-with-huge-data-exceeding-32Ky-tp104817p104856.html
ajantha-bhat commented on a change in pull request #4055:
URL:
https://github.com/apache/carbondata/pull/4055#discussion_r544853917##########
File path: core/src/main/java/org/apache/carbondata/core/datastore/chunk/store/impl/LocalDictDimensionDataChunkStore.java
##########
@@ -84,6 +84,9 @@ public void fillVector(int[] invertedIndex, int[] invertedIndexReverse, byte[] d
vector = ColumnarVectorWrapperDirectFactory
.getDirectVectorWrapperFactory(vectorInfo, vector, invertedIndex, nullBitset,
vectorInfo.deletedRows, false, false);
+ if (dictionaryVector.getIntsSize() < rowsNum) {
Review comment:
```suggestion
if (dictionaryVector.getIntArraySize() < rowsNum) {
```
----------------------------------------------------------------
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]