From 2aa8f077c888d3980b06697e484b45100cf88ece Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 24 Apr 2025 13:31:38 +0200 Subject: [PATCH] [jOOQ/jOOQ#18353] Remove H2 specific Javadoc from MERGE statement --- jOOQ/src/main/java/org/jooq/DSLContext.java | 4 ---- jOOQ/src/main/java/org/jooq/WithStep.java | 4 ---- jOOQ/src/main/java/org/jooq/impl/DSL.java | 4 ---- 3 files changed, 12 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index f1ef7f9c94..8f9ef6bbd8 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -8370,10 +8370,6 @@ public interface DSLContext extends Scope { * .values(value1, value2) * .execute(); * - *

- * 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 }) diff --git a/jOOQ/src/main/java/org/jooq/WithStep.java b/jOOQ/src/main/java/org/jooq/WithStep.java index d8fa70a5c8..69976c37f8 100644 --- a/jOOQ/src/main/java/org/jooq/WithStep.java +++ b/jOOQ/src/main/java/org/jooq/WithStep.java @@ -2777,10 +2777,6 @@ public interface WithStep extends QueryPart { * .values(value1, value2) * .execute(); * - *

- * 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 }) diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index 318dd85eca..e68b3f2c98 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -5989,10 +5989,6 @@ public class DSL { * .whenNotMatchedThenInsert(field1, field2) * .values(value1, value2) * - *

- * 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) */