From 695151320bc5dc87ef36dbfeffd6b01950af0d20 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 31 Jan 2025 12:58:14 +0100 Subject: [PATCH] [jOOQ/jOOQ#17932] Outdated manual section "for update clause" regarding SQL Server implementation --- jOOQ/src/main/java/org/jooq/SelectQuery.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/SelectQuery.java b/jOOQ/src/main/java/org/jooq/SelectQuery.java index 5fb1029179..bb81fe961f 100644 --- a/jOOQ/src/main/java/org/jooq/SelectQuery.java +++ b/jOOQ/src/main/java/org/jooq/SelectQuery.java @@ -1031,12 +1031,6 @@ public interface SelectQuery extends Select, ConditionProvi *
    *
  • {@link SQLDialect#SQLITE}
  • *
- *

- * If your dialect does not support this clause, jOOQ will still render it, - * if you apply it to your query. This might then cause syntax errors - * reported either by your database or your JDBC driver. - *

- * You shouldn't combine this with {@link #setForShare(boolean)} * * @param forUpdate The flag's value */ @@ -1196,12 +1190,6 @@ public interface SelectQuery extends Select, ConditionProvi * "http://www.postgresql.org/docs/9.0/static/sql-select.html#SQL-FOR-UPDATE-SHARE" * >Postgres FOR UPDATE / FOR SHARE * - *

- * If your dialect does not support this clause, jOOQ will still render it, - * if you apply it to your query. This might then cause syntax errors - * reported either by your database or your JDBC driver. - *

- * You shouldn't combine this with {@link #setForUpdate(boolean)} * * @param forShare The flag's value */