From e4c86cd43c3ea9fa0d35187d465aa12dd7d271c2 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 21 Jan 2021 19:42:36 +0100 Subject: [PATCH] [jOOQ/jOOQ#11277] Wrong Support annotation for Derby DROP { INDEX | TABLE } IF EXISTS --- jOOQ/src/main/java/org/jooq/DSLContext.java | 12 ++++++------ jOOQ/src/main/java/org/jooq/impl/DSL.java | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index bd542fe97c..2d77c30292 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -10243,7 +10243,7 @@ public interface DSLContext extends Scope { * @see DSL#dropTableIfExists(String) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropTableStep dropTableIfExists(@Stringly.Name String table); /** @@ -10252,7 +10252,7 @@ public interface DSLContext extends Scope { * @see DSL#dropTableIfExists(Name) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropTableStep dropTableIfExists(Name table); /** @@ -10261,7 +10261,7 @@ public interface DSLContext extends Scope { * @see DSL#dropTableIfExists(Table) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropTableStep dropTableIfExists(Table table); /** @@ -10395,7 +10395,7 @@ public interface DSLContext extends Scope { * @see DSL#dropViewIfExists(String) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropViewFinalStep dropViewIfExists(@Stringly.Name String view); /** @@ -10404,7 +10404,7 @@ public interface DSLContext extends Scope { * @see DSL#dropViewIfExists(Name) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropViewFinalStep dropViewIfExists(Name view); /** @@ -10413,7 +10413,7 @@ public interface DSLContext extends Scope { * @see DSL#dropViewIfExists(Table) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) DropViewFinalStep dropViewIfExists(Table view); /** diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index db3c5cb156..c146aaaac2 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -8282,7 +8282,7 @@ public class DSL { * @see DSLContext#dropTableIfExists(String) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropTableStep dropTableIfExists(@Stringly.Name String table) { return dsl().dropTableIfExists(table); } @@ -8293,7 +8293,7 @@ public class DSL { * @see DSLContext#dropTableIfExists(Name) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropTableStep dropTableIfExists(Name table) { return dsl().dropTableIfExists(table); } @@ -8304,7 +8304,7 @@ public class DSL { * @see DSLContext#dropTableIfExists(Table) */ @NotNull - @Support + @Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropTableStep dropTableIfExists(Table table) { return dsl().dropTableIfExists(table); } @@ -8466,7 +8466,7 @@ public class DSL { * @see DSLContext#dropViewIfExists(String) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropViewFinalStep dropViewIfExists(@Stringly.Name String view) { return dsl().dropViewIfExists(view); } @@ -8477,7 +8477,7 @@ public class DSL { * @see DSLContext#dropViewIfExists(Name) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropViewFinalStep dropViewIfExists(Name view) { return dsl().dropViewIfExists(view); } @@ -8488,7 +8488,7 @@ public class DSL { * @see DSLContext#dropViewIfExists(Table) */ @NotNull - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) public static org.jooq.DropViewFinalStep dropViewIfExists(Table view) { return dsl().dropViewIfExists(view); }