morningman commented on code in PR #11952: URL: https://github.com/apache/doris/pull/11952#discussion_r952040885
########## fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java: ########## @@ -525,6 +529,18 @@ public class SessionVariable implements Serializable, Writable { @VariableMgr.VarAttr(name = ENABLE_FUNCTION_PUSHDOWN) public boolean enableFunctionPushdown; + /** + * For debugg purpose, dont' merge unique key and agg key when reading data. + */ + @VariableMgr.VarAttr(name = SKIP_STORAGE_ENGINE_MERGE) + private boolean skipStorageEngineMerge = false; + + /** + * For debugg purpose, skip delte predicate when reading data. + */ + @VariableMgr.VarAttr(name = SKIP_DELETE_PREDICATE) + private boolean skipDeletePredicate = false; Review Comment: use `public`, or it may cause some serde probem. -- 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. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org