Hi, I had the same problem. Fix it overwriting org.drools.persistence.info.WorkItemInfo, change
private @Lob
byte[] workItemByteArray;
by
@Basic(fetch = FetchType.LAZY)
byte[] workItemByteArray;
Hibernate change the column defitnition to workitembytearray bytea, and works for me :)