Github user Indhumathi27 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2896#discussion_r230731270
--- Diff:
core/src/main/java/org/apache/carbondata/core/scan/executor/impl/AbstractQueryExecutor.java
---
@@ -230,6 +230,11 @@ protected void initQuery(QueryModel queryModel) throws
IOException {
updateColumns(queryModel, fileFooter.getColumnInTable(),
blockInfo.getFilePath());
filePathToSegmentPropertiesMap.put(blockInfo.getFilePath(),
segmentProperties);
}
+ //In case of Legacy store, set setDirectVectorFill to false,
+ // as filling vector directly is not supported for V2 store
--- End diff --
okay
---