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); }