[GitHub] carbondata pull request #2896: [CARBONDATA-3075] Select Filter fails for Leg...

2018-11-13 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/carbondata/pull/2896


---


[GitHub] carbondata pull request #2896: [CARBONDATA-3075] Select Filter fails for Leg...

2018-11-05 Thread Indhumathi27
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


---


[GitHub] carbondata pull request #2896: [CARBONDATA-3075] Select Filter fails for Leg...

2018-11-05 Thread xuchuanyin
Github user xuchuanyin commented on a diff in the pull request:

https://github.com/apache/carbondata/pull/2896#discussion_r230728849
  
--- 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 --

not only v2... 'not supported for legacy store prior to v3'. Besides I do 
like you to add a warn log here and remove the comments.


---