[jOOQ/jOOQ#18265] DSLContext::nextvals isn't really supported by Derby
This commit is contained in:
parent
f7b2d5c890
commit
ed3f0a4e1d
@ -12787,7 +12787,7 @@ public interface DSLContext extends Scope {
|
||||
* @throws DataAccessException if something went wrong executing the query
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, POSTGRES, YUGABYTEDB })
|
||||
@Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, POSTGRES, YUGABYTEDB })
|
||||
<T extends Number> List<T> nextvals(Sequence<T> sequence, int size) throws DataAccessException;
|
||||
|
||||
/**
|
||||
|
||||
@ -133,6 +133,6 @@ public interface Sequence<T extends Number> extends Qualified, Typed<T> {
|
||||
* This is done using {@link DSL#generateSeries(int, int)}.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, POSTGRES, YUGABYTEDB })
|
||||
@Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, POSTGRES, YUGABYTEDB })
|
||||
Select<Record1<T>> nextvals(int size);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user