Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47140b commit 7fa6ac1Copy full SHA for 7fa6ac1
APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
@@ -2064,7 +2064,7 @@ else if ("!=null".equals(c)) {
2064
}
2065
else if (isPrepared() && (c.contains("--") || PATTERN_RANGE.matcher(c).matches() == false)) {
2066
throw new UnsupportedOperationException(key + "{}:value 的 value 中 " + c + " 不合法!"
2067
- + "预编译模式下 key{}:\"condition\" 中 condition 必须 为 =null 或 !=null 或 符合正则表达式 ^[0-9%!=<>,]+$ !不允许连续减号 -- !不允许空格!");
+ + "预编译模式下 key{}:\"condition\" 中 condition 必须 为 =null 或 !=null 或 符合正则表达式 " + PATTERN_RANGE + " !不允许连续减号 -- !不允许空格!");
2068
2069
2070
index = c == null ? -1 : c.indexOf("(");
0 commit comments