is there any patch for Envers version 3.5 ?
i am stuck in my project with the error
Caused by: org.hibernate.QueryException: unexpected char: '"' [select e from com.ecc.bo.bill.Bill"_AUD" e where e.REVTYPE <> :_p1 and e.originalId.REV.id = (select max(e2.originalId.REV.id) from com.ecc.bo.bill.Bill"_AUD" e2 where e2.originalId.REV.id <= :_p0 and e.originalId.id = e2.originalId.id) and e.originalId.id = :_p2]
I added this property to hack the bug. Is working while storing data but not or retrieving data using auditReader
<property name="org.hibernate.envers.audit_table_suffix" value='"_AUD"'/>
my table is "BILL" my audit table is "BILL""_AUD"
|