[jOOQ/jOOQ#10460] Use MERGE to emulate INSERT .. ON DUPLICATE KEY IGNORE

in H2
This commit is contained in:
Lukas Eder 2020-07-29 16:19:04 +02:00
parent 971ed06be9
commit bc4f4e1759

View File

@ -589,6 +589,7 @@ final class InsertQueryImpl<R extends Record> extends AbstractStoreQuery<R> impl
case DERBY:
case H2:
case HSQLDB: {
ctx.visit(toMerge(ctx.configuration()));
break;