This is an automated email from the ASF dual-hosted git repository. eldenmoon pushed a commit to branch variant-sparse in repository https://gitbox.apache.org/repos/asf/doris.git
commit 29c72d61921db9224c0b1012d2f444536815ad36 Author: eldenmoon <lihan...@selectdb.com> AuthorDate: Thu Nov 14 21:57:43 2024 +0800 [SessionVariable](ShortCircuit) disable snapshot query by defaulto --- fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index 2c09ee73f57..48d747e63bf 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -1589,7 +1589,7 @@ public class SessionVariable implements Serializable, Writable { @VariableMgr.VarAttr(name = TOPN_FILTER_RATIO) public double topnFilterRatio = 0.5; @VariableMgr.VarAttr(name = ENABLE_SNAPSHOT_POINT_QUERY) - public boolean enableSnapshotPointQuery = true; + public boolean enableSnapshotPointQuery = false; @VariableMgr.VarAttr(name = ENABLE_SERVER_SIDE_PREPARED_STATEMENT, needForward = true, description = { "是否启用开启服务端prepared statement", "Set whether to enable server side prepared statement."}) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org