Skip to content

Commit 7854f00

Browse files
authored
Merge pull request #278 from yeyuezhishou/user/libin/dev20210730
fix:bug修复
2 parents 4e84c2c + 914b50a commit 7854f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ public String getColumnString(boolean inSQLJoin) throws Exception {
10461046
// 由于 HashMap 对 key 做了 hash 处理,所以 get 比 containsValue 更快
10471047
if ("".equals(RAW_MAP.get(c)) || RAW_MAP.containsValue(c)) { // newSQLConfig 提前处理好的
10481048
//排除@raw中的值,以避免使用date_format(date,'%Y-%m-%d %H:%i:%s') 时,冒号的解析出错
1049-
column.remove(c);
1049+
//column.remove(c);
10501050
continue;
10511051
}
10521052
}

0 commit comments

Comments
 (0)