[#8024] Missing ORACLE Support on DSL.offsetDateTime() overload

This commit is contained in:
lukaseder 2018-11-06 10:27:16 +01:00
parent 087e1ca01b
commit 48d7695a4a

View File

@ -15275,7 +15275,7 @@ public class DSL {
* UTC. Regardless of this fact, the result should be the same
* {@link Instant} (in UTC) as the input.
*/
@Support({ HSQLDB, POSTGRES })
@Support({ H2, HSQLDB, POSTGRES })
public static Field<OffsetTime> offsetTime(String value) {
return Tools.field(Convert.convert(value, OffsetTime.class));
}
@ -15303,7 +15303,7 @@ public class DSL {
* UTC. Regardless of this fact, the result should be the same
* {@link Instant} (in UTC) as the input.
*/
@Support({ HSQLDB, POSTGRES })
@Support({ H2, HSQLDB, POSTGRES })
public static Field<OffsetTime> offsetTime(Field<OffsetTime> field) {
return new DateOrTime<OffsetTime>(field, SQLDataType.OFFSETTIME);
}