sureshanaparti commented on code in PR #8544:
URL: https://github.com/apache/cloudstack/pull/8544#discussion_r1464590405
##########
framework/db/src/main/java/com/cloud/utils/db/GenericDaoBase.java:
##########
@@ -650,7 +655,7 @@ protected void setField(Object entity, Field field,
ResultSet rs, int index) thr
} else if (type == byte[].class) {
field.set(entity, rs.getBytes(index));
} else {
- field.set(entity, rs.getObject(index));
+ field.set(entity,
_conversionSupport.convertToEntityAttribute(field, rs.getObject(index)));
Review Comment:
updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]