[#5093] Implement INSERT .. ON DUPLICATE KEY IGNORE using INSERT .. ON CONFLICT in PostgreSQL 9.5 also when using SQLDialect.POSTGRES
This commit is contained in:
parent
fc1108cca1
commit
f4dd8bcd92
@ -247,7 +247,8 @@ final class InsertQueryImpl<R extends Record> extends AbstractStoreQuery<R> impl
|
||||
break;
|
||||
}
|
||||
|
||||
case POSTGRES_9_5: {
|
||||
case POSTGRES_9_5:
|
||||
case POSTGRES: {
|
||||
toSQLInsert(ctx);
|
||||
ctx.formatSeparator()
|
||||
.start(INSERT_ON_DUPLICATE_KEY_UPDATE)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user