Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -1171,9 +1171,9 @@ public String getColumnString(boolean inSQLJoin) throws Exception {
// }
}

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


Expand Down