[jOOQ/jOOQ#11485] Support the TIME WITH TIME ZONE literal

This commit is contained in:
Lukas Eder 2023-08-18 15:34:13 +02:00
parent 796da54e34
commit 196f524d66

View File

@ -3556,6 +3556,7 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
switch (ctx.family()) {
// [#5895] HSQLDB derives the specific data type from the literal
case HSQLDB:
case TRINO:
ctx.render().visit(K_TIME).sql(" '").sql(escape(format(value), ctx.render())).sql('\'');
break;