[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:
Lukas Eder 2022-11-24 15:02:25 +01:00
parent 1755f1b299
commit fb2ea304bb

View File

@ -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()