Thank you Omar.
One more thing, do you know some patch (implemented or in progress) that have similar behaviour to "identity" in PostgreSQL.
Type: Posts; User: luciano; Keyword(s):
Thank you Omar.
One more thing, do you know some patch (implemented or in progress) that have similar behaviour to "identity" in PostgreSQL.
This is how Hibernate behaves. Transaction management does not rollback your transient objects to their original state. It is the developer responsibility to do this. You can also provide a "fresh"...
Problem Description
****************
During a transaction that rollbacks, all NEW OBJECTs that had been persisted in it, mantain the Key that has been assigned to then by the GENERATOR. So, the...