[jOOQ/jOOQ#12125] Wrong Support annotation: HSQLDB doesn't support MULTISET or MULTISET_AGG

This commit is contained in:
Lukas Eder 2021-07-08 12:27:36 +02:00
parent 3dc3520779
commit 47378f1dd2

View File

@ -23427,7 +23427,7 @@ public class DSL {
* new issue on github.
*/
@NotNull
@Support({ H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
@Support({ H2, MARIADB, MYSQL, POSTGRES })
public static <R extends Record> Field<Result<R>> multiset(Select<R> select) {
return new Multiset<>(select);
}
@ -23659,7 +23659,7 @@ public class DSL {
* new issue on github.
*/
@NotNull
@Support({ H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
@Support({ H2, MARIADB, MYSQL, POSTGRES })
public static ArrayAggOrderByStep<Result<Record>> multisetAgg(Collection<? extends Field<?>> fields) {
return new MultisetAgg<>(false, row(fields));
}