[jOOQ/jOOQ#11277] Wrong Support annotation for Derby DROP { INDEX |
TABLE } IF EXISTS
This commit is contained in:
parent
4612ed9314
commit
e4c86cd43c
@ -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);
|
||||
|
||||
/**
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user