[jOOQ/jOOQ#16334] UUID bind values should be auto-cast to avoid issues with lack of auto-conversion support in PostgreSQL

This commit is contained in:
Lukas Eder 2024-02-28 11:53:12 +01:00
parent 33acb34307
commit eaf1a766b5

View File

@ -838,7 +838,11 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
if (dataType.isUUID()) {
switch (ctx.family()) {
case POSTGRES:
case TRINO:
case YUGABYTEDB:
return true;
}
}