[#4464] MERGE .. SELECT is not supported in PostgreSQL

This commit is contained in:
lukaseder 2015-08-19 19:01:54 +02:00
parent 93f52fca9e
commit bf06ac1cbf

View File

@ -1125,11 +1125,7 @@ implements
map.put(field, getUpsertValues().get(fields.indexOf(field)));
if (upsertSelect != null) {
// TODO [#2529] This cannot be implemented yet
// ctx.visit(insertInto(table, getUpsertFields())
// .select(upsertSelect)
// .onDuplicateKeyUpdate()
// .set(map));
ctx.sql("[ merge with select is not supported in PostgreSQL ]");
}
else {
ctx.visit(insertInto(table, getUpsertFields())