Issue with Primary Key with Postgresql and Audit Trigger 91+ [message #1830216] |
Mon, 20 July 2020 22:43  |
Adam Chalkley Messages: 3 Registered: July 2020 |
Junior Member |
|
|
Hi,
I'm setting up a simple web app using JPA with EclipseLink (2.7) and Postgresql 9.6.
I installed the Audit Trigger 91+ for postgresql to create an audit log, and enabled on the table.
When I call a simple store command:
entityManager.persist(entity);
entityManager.flush();
System.out.println(entity.getPrimaryKey());
The primary key that is returned to the entity is the audit event_id and not the primary key of the record.
If I query for the entity again the returned item has the correct pkey
If I disable the auditing, then the primary key of the entity is returned as normal.
Is this a known issue, I haven't been able to find any similar threads.
Any ideas why the entity manager would be picking up the wrong ID, and how to resolve?
i thought it was odd when it needed me to add a GRANT on the audit table's sequence before I could even call persist!
[Edit as might be pertinent, keys are bigserial, mapped with GenerationType.IDENTITY.
I'm also using a mapped superclass with @PreUpdate and @PrePersist to generate create/modified timestamps and it also has an @Version for optimistic locking]
(Dev env. Netbeans 8.2, Oracle Glassfish 5.0, jdk 8u151 - not had a chance to try with other libs.)
[Updated on: Wed, 22 July 2020 05:30] Report message to a moderator
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.01973 seconds