Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2378#discussion_r195891403
--- Diff:
core/src/main/java/org/apache/carbondata/core/scan/model/QueryModel.java ---
@@ -109,6 +109,11 @@
*/
private boolean requiredRowId;
+ /**
+ * whether it is FG with search mode
+ */
+ private boolean isFG;
--- End diff --
I think this is not needed, you can change the behavior in
`SearchRequestHandler.handleRequest`. If the FGDatamap is used, then do not
call `queryModel.setTableBlockInfos(list);` in `handleRequest`
---