Update AbstractSQLConfig.java

这里 Log.DEBUG == false 应该去掉,毕竟上线前要 Log.DEBUG = true 减少日志打印等,会导致上线后初始化加载 Access, Request 表记录仍然限制最大 Parser.getMaxQueryCount(默认 100)。
(摘自 https://github.com/Tencent/APIJSON/issues/640)
This commit is contained in:
jia199807 2024-02-18 11:01:46 +08:00 committed by GitHub
parent 046f34e91e
commit f0b16a1280
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -883,7 +883,7 @@ public abstract class AbstractSQLConfig<T extends Object> implements SQLConfig<T
@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() {