[jOOQ/jOOQ#15732] Fix DSL.table(Field) Support

This commit is contained in:
Lukas Eder 2024-03-27 14:04:28 +01:00
parent d001e3f3f2
commit 0f73337be9

View File

@ -12470,7 +12470,7 @@ public class DSL {
* @see #unnest(Field)
*/
@NotNull
@Support({ H2, HSQLDB, POSTGRES })
@Support({ DUCKDB, H2, HSQLDB, POSTGRES })
public static Table<?> table(Field<?> cursor) {
return unnest(cursor);
}