[jOOQ/jOOQ#8630] MariaDB does not yet support this

This commit is contained in:
Lukas Eder 2022-11-28 11:11:37 +01:00
parent 649e7aa871
commit 4e694b38cc

View File

@ -25757,7 +25757,7 @@ public class DSL {
* @see #rollup(Field...)
*/
@NotNull
@Support({ MARIADB, MYSQL, POSTGRES })
@Support({ MYSQL, POSTGRES })
public static Field<Integer> grouping(Field<?> field) {
return function("grouping", Integer.class, field);
}