Skip to content

Commit

Permalink
Update AbstractSQLConfig.java
Browse files Browse the repository at this point in the history
这里 Log.DEBUG == false 应该去掉,毕竟上线前要 Log.DEBUG = true 减少日志打印等,会导致上线后初始化加载 Access, Request 表记录仍然限制最大 Parser.getMaxQueryCount(默认 100)。
(摘自 Tencent#640
  • Loading branch information
jia199807 authored Feb 18, 2024
1 parent 046f34e commit f0b16a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ public int[] getDBVersionNums() {

@Override
public boolean limitSQLCount() {
return Log.DEBUG == false || AbstractVerifier.SYSTEM_ACCESS_MAP.containsKey(getTable()) == false;
return AbstractVerifier.SYSTEM_ACCESS_MAP.containsKey(getTable()) == false;
}
@Override
public boolean allowPartialUpdateFailed() {
Expand Down

0 comments on commit f0b16a1

Please sign in to comment.