[jOOQ/JOOQ#9064] Support HSQLDB in DSL#week()

This commit is contained in:
Knut Wannheden 2019-08-20 10:03:52 +02:00
parent 345fbe29fb
commit 3933ad94ee

View File

@ -15268,7 +15268,7 @@ public class DSL {
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#WEEK}
*/
@Support({ H2, POSTGRES })
@Support({ H2, HSQLDB, POSTGRES })
public static Field<Integer> week(Field<?> field) {
return extract(field, DatePart.WEEK);
}