Github user QiangCai commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/995#discussion_r121882250
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/columnar/BlockIndexerStorageForShort.java
---
@@ -27,25 +27,26 @@
private boolean alreadySorted;
- private short[] dataAfterComp;
+ private short[] rowIdPage;
- private short[] indexMap;
+ private short[] rowIdRlePage;
- private byte[][] keyBlock;
+ private byte[][] dataPage;
- private short[] dataIndexMap;
+ private short[] dataRlePage;
private int totalSize;
- public BlockIndexerStorageForShort(byte[][] keyBlock, boolean
compressData,
+ public BlockIndexerStorageForShort(byte[][] dataPage, boolean rleOnData,
boolean isNoDictionary, boolean isSortRequired) {
- ColumnWithShortIndex[] columnWithIndexs =
createColumnWithIndexArray(keyBlock, isNoDictionary);
+ ColumnWithShortIndex[] dataWithRowId =
createColumnWithIndexArray(dataPage, isNoDictionary);
--- End diff --
ColumnWithShortIndex => ColumnWithShortRowId
createColumnWithIndexArray => createColumnWithRowId
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---