Skip to content

Commit

Permalink
TEIID-5458 allowing object conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Aug 28, 2018
1 parent e848645 commit 85310f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public Object retrieveValue(CallableStatement results, int parameterIndex, Class

@Override
public boolean supportsConvert(int fromType, int toType) {
if (!super.supportsConvert(fromType, toType)) {
if (fromType != TypeFacility.RUNTIME_CODES.OBJECT && !super.supportsConvert(fromType, toType)) {
return false;
}
if (convert.hasTypeMapping(toType)) {
Expand Down

0 comments on commit 85310f6

Please sign in to comment.