[chore](fuzzy) topn_opt_limit_threshold (#27496)

This commit is contained in:
Dongyang Li
2023-11-24 14:08:27 +08:00
committed by GitHub
parent dbbab63623
commit dbff9d7a89

View File

@ -1490,10 +1490,7 @@ public class SessionVariable implements Serializable, Writable {
}
// set random 1, 10, 100, 1000, 10000
// this.topnOptLimitThreshold = (int) Math.pow(10, random.nextInt(5));
// Now P0 test have some failed cese about topn, but can't reproduce at local
// So set this threshold to 0 temporary.
this.topnOptLimitThreshold = 0;
this.topnOptLimitThreshold = (int) Math.pow(10, random.nextInt(5));
}
public String printFuzzyVariables() {