[jOOQ/jOOQ#18265] DSLContext::nextvals isn't really supported by Derby

This commit is contained in:
Lukas Eder 2025-03-28 09:47:44 +01:00
parent f7b2d5c890
commit ed3f0a4e1d
2 changed files with 2 additions and 2 deletions

View File

@ -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;
/**

View File

@ -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);
}