[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:
parent
fa17504b57
commit
9e1a69ab54
@ -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]
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user