[jOOQ/jOOQ#11277] Wrong Support annotation for Derby DROP { INDEX |

TABLE } IF EXISTS
This commit is contained in:
Lukas Eder 2021-01-21 19:42:36 +01:00
parent 4612ed9314
commit e4c86cd43c
2 changed files with 12 additions and 12 deletions

View File

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

View File

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