Skip to content

Commit f442543

Browse files
committed
解决预估容量判断 NOT 条件用错逻辑 key
1 parent 92c396c commit f442543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

APIJSONORM/src/main/java/apijson/orm/AbstractSQLExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public JSONObject execute(@NotNull SQLConfig config, boolean unknowType) throws
321321
List<String> orList = combine == null ? null : combine.get("|");
322322
int orCondCount = orList == null ? 0 : orList.size();
323323

324-
List<String> notList = combine == null ? null : combine.get("|");
324+
List<String> notList = combine == null ? null : combine.get("!");
325325
int notCondCount = notList == null ? 0 : notList.size();
326326

327327
// 有 GROUP BY 分组,字段越少过滤数据越多

0 commit comments

Comments
 (0)