[#6382] Fix Derby Support annotations
This commit is contained in:
parent
b190b8351a
commit
6fa285f687
@ -43,7 +43,6 @@ package org.jooq;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.DERBY;
|
||||
import static org.jooq.SQLDialect.H2;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.HSQLDB;
|
||||
@ -86,12 +85,12 @@ public interface CreateTableWithDataStep extends CreateTableOnCommitStep {
|
||||
/**
|
||||
* Add a <code>WITH DATA</code> clause.
|
||||
*/
|
||||
@Support({ CUBRID, DERBY, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
@Support({ CUBRID, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
CreateTableCommentStep withData();
|
||||
|
||||
/**
|
||||
* Add a <code>WITH DATA</code> clause.
|
||||
*/
|
||||
@Support({ CUBRID, DERBY, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
@Support({ CUBRID, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
CreateTableCommentStep withNoData();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user