
|
If you were logged in you would be able to see more operations.
|
|
|
|
Time Tracking:
|
|
Original Estimate:
|
0.25d
|
|
|
Remaining Estimate:
|
0.25d
|
|
|
Time Spent:
|
Not Specified
|
|
|
|
|
I'm not sure how this issue has been there so long. I checked back and it's been doing the following since I originally wrote it:
executionContext.put(key, rs.getObject("OBJECT_VAL"));
Which will never work, since getObject will just return a Byte[]. Perhaps it's a reflection of usage that no one has caught this?
|
|
Description
|
I'm not sure how this issue has been there so long. I checked back and it's been doing the following since I originally wrote it:
executionContext.put(key, rs.getObject("OBJECT_VAL"));
Which will never work, since getObject will just return a Byte[]. Perhaps it's a reflection of usage that no one has caught this? |
Show » |
|
executionContext.put(key, SerializationUtils.deserialize(rs.getBinaryStream("OBJECT_VAL")));
I also added an extra test case.