Skip to content

Commit

Permalink
[Enhancement](audit log) Set print audit log sesssion variable defaul…
Browse files Browse the repository at this point in the history
…t value to false (#38865)

## Proposed changes

In #38419, we introduced a new variable `enable_prepared_stmt_audit_log`
to make group commit faster. Here we set this session variable default
value to false.

<!--Describe your changes.-->
  • Loading branch information
Yukang-Lian authored Aug 5, 2024
1 parent 10aa164 commit a70e4da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@ public void setEnableLeftZigZag(boolean enableLeftZigZag) {
public String groupCommit = "off_mode";

@VariableMgr.VarAttr(name = ENABLE_PREPARED_STMT_AUDIT_LOG, needForward = true)
public boolean enablePreparedStmtAuditLog = true;
public boolean enablePreparedStmtAuditLog = false;

@VariableMgr.VarAttr(name = INVERTED_INDEX_CONJUNCTION_OPT_THRESHOLD,
description = {"在match_all中求取多个倒排索引的交集时,如果最大的倒排索引中的总数是最小倒排索引中的总数的整数倍,"
Expand Down

0 comments on commit a70e4da

Please sign in to comment.