[jOOQ/jOOQ#8766] Add missing dialects to @Support of mergeInto()

Adds AURORA_POSTGRES, HANA, and POSTGRES_9_5 to @Support annotation of
DSLContext#mergeInto(Table) and DSL#mergeInto(Table).
This commit is contained in:
Knut Wannheden 2019-06-11 11:58:23 +02:00
parent fa17504b57
commit 9e1a69ab54
2 changed files with 2 additions and 2 deletions

View File

@ -7651,7 +7651,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* statement without field specification. See also
* {@link #mergeInto(Table, Field...)}
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL })
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
<R extends Record> MergeUsingStep<R> mergeInto(Table<R> table);
// [jooq-tools] START [merge]

View File

@ -5425,7 +5425,7 @@ public class DSL {
*
* @see DSLContext#mergeInto(Table)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL })
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
public static <R extends Record> MergeUsingStep<R> mergeInto(Table<R> table) {
return dsl().mergeInto(table);
}