With a model object containing (https://github.com/jasonparallel/hibernate-test-case-templates/blob/update-lob/orm/hibernate-orm-4/src/main/java/org/hibernate/bugs/Image.java)
@Lob
@Basic( fetch = FetchType.LAZY )
private byte[] content;
I’m trying to update the value via .setContent(new byte[] {1, 2, 3, 4}); but the old value remains when the object is retrieved again.