mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复PostgreSQL使用upsert字段大小写问题问题
This commit is contained in:
parent
168be856c0
commit
bc5ec5c5d2
@ -2,7 +2,7 @@
|
||||
# 🚀Changelog
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.24(2023-12-15)
|
||||
# 5.8.24(2023-12-19)
|
||||
|
||||
### 🐣新特性
|
||||
* 【cache 】 Cache增加get重载,可自定义超时时间(issue#I8G0DL@Gitee)
|
||||
@ -26,6 +26,7 @@
|
||||
* 【http 】 修复graalvm编译后,未读取Content-Length可能导致的读取时间过长问题(issue#I6Q30X@Gitee)
|
||||
* 【core 】 修复JavaSourceCompiler.addSource目录处理错误问题(issue#3425@Github)
|
||||
* 【core 】 修复时间戳转Bean时异常问题(issue#I8NMP7@Gitee)
|
||||
* 【core 】 修复PostgreSQL使用upsert字段大小写问题问题(issue#I8PB4X@Gitee)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.23(2023-11-12)
|
||||
|
@ -22,6 +22,9 @@ import java.sql.SQLException;
|
||||
public class PostgresqlDialect extends AnsiSqlDialect{
|
||||
private static final long serialVersionUID = 3889210427543389642L;
|
||||
|
||||
/**
|
||||
* 构造
|
||||
*/
|
||||
public PostgresqlDialect() {
|
||||
wrapper = new Wrapper('"');
|
||||
}
|
||||
@ -53,7 +56,7 @@ public class PostgresqlDialect extends AnsiSqlDialect{
|
||||
|
||||
final String wrapedField = (null != wrapper) ? wrapper.wrap(field) : field;
|
||||
fieldsPart.append(wrapedField);
|
||||
updateHolder.append(wrapedField).append("=EXCLUDED.").append(field);
|
||||
updateHolder.append(wrapedField).append("=EXCLUDED.").append(wrapedField);
|
||||
placeHolder.append("?");
|
||||
builder.addParams(value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user