[jOOQ/jOOQ#14653] Fix support annotations on JSON_ARRAYAGG .. RETURNING and JSON_OBJECTAGG .. RETURNING
This commit is contained in:
parent
6d6a6a16f1
commit
0260b160a6
@ -44,8 +44,11 @@ import org.jetbrains.annotations.*;
|
||||
// ...
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.H2;
|
||||
import static org.jooq.SQLDialect.MARIADB;
|
||||
import static org.jooq.SQLDialect.MYSQL;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.SQLITE;
|
||||
import static org.jooq.SQLDialect.YUGABYTEDB;
|
||||
|
||||
@ -65,6 +68,6 @@ public interface JSONArrayAggReturningStep<T> extends AggregateFilterStep<T> {
|
||||
* function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, POSTGRES, SQLITE, YUGABYTEDB })
|
||||
@Support({ H2, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB })
|
||||
AggregateFilterStep<T> returning(DataType<?> returning);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user