[jOOQ/jOOQ#12125] Wrong Support annotation: HSQLDB doesn't support MULTISET or MULTISET_AGG
This commit is contained in:
parent
3dc3520779
commit
47378f1dd2
@ -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));
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user