[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:
parent
33acb34307
commit
eaf1a766b5
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user