[jOOQ/jOOQ#10045] Added some forgotten deprecations

This commit is contained in:
Lukas Eder 2020-05-05 11:44:21 +02:00
parent 8b7a88816e
commit 28574d8034
2 changed files with 8 additions and 0 deletions

View File

@ -8150,7 +8150,9 @@ public interface DSLContext extends Scope , AutoCloseable {
* <td>See {@link #mergeInto(Table)} for the standard MERGE statement</td>
* </tr>
* </table>
* @deprecated - [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, via {@link #mergeInto(Table)}
*/
@Deprecated
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
<R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Field<?>... fields);
@ -8158,7 +8160,9 @@ public interface DSLContext extends Scope , AutoCloseable {
* Create a new DSL merge statement (H2-specific syntax).
*
* @see #mergeInto(Table, Field...)
* @deprecated - [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, via {@link #mergeInto(Table)}
*/
@Deprecated
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
<R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Collection<? extends Field<?>> fields);

View File

@ -5939,7 +5939,9 @@ public class DSL {
* </table>
*
* @see DSLContext#mergeInto(Table, Field...)
* @deprecated - [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, via {@link #mergeInto(Table)}
*/
@Deprecated
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
public static <R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Field<?>... fields) {
return dsl().mergeInto(table, fields);
@ -5953,7 +5955,9 @@ public class DSL {
* <code>MERGE</code> statement.
*
* @see DSLContext#mergeInto(Table, Collection)
* @deprecated - [#10045] - 3.14.0 - Use the standard SQL MERGE API instead, via {@link #mergeInto(Table)}
*/
@Deprecated
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
public static <R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Collection<? extends Field<?>> fields) {
return dsl().mergeInto(table, fields);