[jOOQ/jOOQ#18353] Remove H2 specific Javadoc from MERGE statement

This commit is contained in:
Lukas Eder 2025-04-24 13:31:38 +02:00
parent 01f205953d
commit 2aa8f077c8
3 changed files with 0 additions and 12 deletions

View File

@ -8370,10 +8370,6 @@ public interface DSLContext extends Scope {
* .values(value1, value2)
* .execute();
* </code></pre>
* <p>
* Note: Using this method, you can also create an H2-specific MERGE
* statement without field specification. See also
* {@link #mergeInto(Table, Field...)}
*/
@NotNull @CheckReturnValue
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, YUGABYTEDB })

View File

@ -2777,10 +2777,6 @@ public interface WithStep extends QueryPart {
* .values(value1, value2)
* .execute();
* </code></pre>
* <p>
* Note: Using this method, you can also create an H2-specific MERGE
* statement without field specification. See also
* {@link #mergeInto(Table, Field...)}
*/
@NotNull @CheckReturnValue
@Support({ H2, POSTGRES })

View File

@ -5989,10 +5989,6 @@ public class DSL {
* .whenNotMatchedThenInsert(field1, field2)
* .values(value1, value2)
* </code></pre>
* <p>
* Note: Using this method, you can also create an H2-specific MERGE
* statement without field specification. See also
* {@link #mergeInto(Table, Field...)}
*
* @see DSLContext#mergeInto(Table)
*/