[jOOQ/jOOQ#18516] Meta::getDomains methods have insufficient dialect
support
This commit is contained in:
parent
a538c747cf
commit
cd5914bb2f
@ -52,6 +52,7 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
import static org.jooq.SQLDialect.MARIADB;
|
||||
import static org.jooq.SQLDialect.MYSQL;
|
||||
// ...
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.SQLITE;
|
||||
@ -198,7 +199,7 @@ public interface Meta extends Scope {
|
||||
* objects
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ FIREBIRD, H2, HSQLDB, POSTGRES, YUGABYTEDB })
|
||||
List<Domain<?>> getDomains() throws DataAccessException;
|
||||
|
||||
/**
|
||||
@ -208,7 +209,7 @@ public interface Meta extends Scope {
|
||||
* objects
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ FIREBIRD, H2, HSQLDB, POSTGRES, YUGABYTEDB })
|
||||
List<Domain<?>> getDomains(String name) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@ -218,7 +219,7 @@ public interface Meta extends Scope {
|
||||
* objects
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ FIREBIRD, H2, HSQLDB, POSTGRES, YUGABYTEDB })
|
||||
List<Domain<?>> getDomains(Name name) throws DataAccessException;
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user