[jOOQ/jOOQ#14294] ON CONFLICT DO NOTHING emulation should continue to be
applied for PostgreSQL 9.3 and 9.4
This commit is contained in:
parent
1755f1b299
commit
fb2ea304bb
@ -58,6 +58,7 @@ import static org.jooq.SQLDialect.MYSQL;
|
||||
// ...
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
@ -549,6 +550,14 @@ implements
|
||||
case POSTGRES:
|
||||
case SQLITE:
|
||||
case YUGABYTEDB: {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ctx.data(DATA_MANDATORY_WHERE_CLAUSE, ctx.family() == SQLITE, c -> toSQLInsert(c, false));
|
||||
|
||||
ctx.formatSeparator()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user