Skip to content

Commit 95ca503

Browse files
authored
Merge pull request Tencent#294 from yeyuezhishou/user/libin/dev20210802
perft:优化
2 parents 33b5356 + f6c3ed0 commit 95ca503

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1179,9 +1179,9 @@ public String getColumnString(boolean inSQLJoin) throws Exception {
11791179
// }
11801180
}
11811181

1182-
if (expression.length() > 50) {
1182+
if (expression.length() > 100) {
11831183
throw new UnsupportedOperationException("@column:value 的 value 中字符串 " + expression + " 不合法!"
1184-
+ "不允许传超过 50 个字符的函数或表达式!请用 @raw 简化传参!");
1184+
+ "不允许传超过 100 个字符的函数或表达式!请用 @raw 简化传参!");
11851185
}
11861186

11871187

0 commit comments

Comments
 (0)