yiguolei commented on code in PR #22144:
URL: https://github.com/apache/doris/pull/22144#discussion_r1273390145
##########
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java:
##########
@@ -567,7 +567,7 @@ public class SessionVariable implements Serializable,
Writable {
+ "which can improve query concurrency. default is false."})
public boolean enableScanRunSerial = false;
- @VariableMgr.VarAttr(name = ENABLE_SQL_CACHE)
+ @VariableMgr.VarAttr(name = ENABLE_SQL_CACHE, fuzzy = true)
Review Comment:
not add it to fuzzy
##########
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java:
##########
@@ -1052,6 +1052,7 @@ public void initFuzzyModeVariables() {
this.partitionedHashJoinRowsThreshold = random.nextBoolean() ? 8 :
1048576;
this.partitionedHashAggRowsThreshold = random.nextBoolean() ? 8 :
1048576;
this.enableShareHashTableForBroadcastJoin = random.nextBoolean();
+ this.enableSqlCache = random.nextBoolean();
int randomInt = random.nextInt(4);
if (randomInt % 2 == 0) {
this.rewriteOrToInPredicateThreshold = 100000;
Review Comment:
add fuzzy at line 1058. Or it will very difficult to debug
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]