[jOOQ/jOOQ#11616] Missing DB2 and Derby @Support on DROP SCHEMA .. RESTRICT

This commit is contained in:
Lukas Eder 2021-03-11 14:38:08 +01:00
parent 94aa89b9ed
commit e4c09cbea1

View File

@ -77,7 +77,7 @@ public interface DropSchemaStep extends DropSchemaFinalStep {
/**
* Add the <code>RESTRICT</code> clause to the <code>DROP SCHEMA</code> statement.
*/
@Support({ H2, HSQLDB, POSTGRES })
@Support({ DERBY, H2, HSQLDB, POSTGRES })
@NotNull
DropSchemaFinalStep restrict();
}