|
As outlined in
HHH-3551
, boolean support in Informix requires 't' or 'f', rather than the more-standard values used by other dialects.
The fix for this issue is to add the following method to InformixDialect.java: {{ public String toBooleanValueString(boolean bool) { return bool ? "'t'" : "'f'"; }
}}
|