Piotr Findeisen commented on an issue
Hibernate ORM / Bug HHH-8567
AuditProperty.property('id') does not reference original id, it references generated composite id of AUD instead
h5. Steps
 * have an @Audited entity {{A}} with {{@Id Long id}}
 * Use {{AuditEntity.property("id")}}
 ** for example: {{AuditEntity.property("id").desc()}} to order the results

h5. expected
 * {{AuditEntity.property("id")}} should reference the {{A.id}} in the AUD table
 ** thus, in the example, the audit query order should be over the {{ID}} col...