[jOOQ/jOOQ#11277] Wrong Support annotation for Derby DROP { INDEX | TABLE } IF EXISTS

This commit is contained in:
Lukas Eder 2021-01-21 19:34:53 +01:00
parent f62c281833
commit 4612ed9314
2 changed files with 6 additions and 6 deletions

View File

@ -10081,7 +10081,7 @@ public interface DSLContext extends Scope {
* @see DSL#dropIndexIfExists(String)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
DropIndexOnStep dropIndexIfExists(@Stringly.Name String index);
/**
@ -10090,7 +10090,7 @@ public interface DSLContext extends Scope {
* @see DSL#dropIndexIfExists(Name)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
DropIndexOnStep dropIndexIfExists(Name index);
/**
@ -10099,7 +10099,7 @@ public interface DSLContext extends Scope {
* @see DSL#dropIndexIfExists(Index)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
DropIndexOnStep dropIndexIfExists(Index index);
/**

View File

@ -8084,7 +8084,7 @@ public class DSL {
* @see DSLContext#dropIndexIfExists(String)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
public static org.jooq.DropIndexOnStep dropIndexIfExists(@Stringly.Name String index) {
return dsl().dropIndexIfExists(index);
}
@ -8095,7 +8095,7 @@ public class DSL {
* @see DSLContext#dropIndexIfExists(Name)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
public static org.jooq.DropIndexOnStep dropIndexIfExists(Name index) {
return dsl().dropIndexIfExists(index);
}
@ -8106,7 +8106,7 @@ public class DSL {
* @see DSLContext#dropIndexIfExists(Index)
*/
@NotNull
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, POSTGRES, SQLITE })
public static org.jooq.DropIndexOnStep dropIndexIfExists(Index index) {
return dsl().dropIndexIfExists(index);
}