Re: [hibernate-dev] Support for DELETE statements ActionQueue sorting

2015-05-20 Thread Steve Ebersole
The difference is that insert ordering is merely a question of performance in order to better leverage JDBC batching. Here you are suggesting that there is a bug in the order of deletes. Or are you just wanting to order the deletes to better leverage JDBC batching as well? It's not clear. On We

[hibernate-dev] Support for DELETE statements ActionQueue sorting

2015-03-25 Thread Mihalcea Vlad
Hi, While INSERT sorting is handled by ActionQueue.InsertActionSorter, DELETE statements are not sorted at all. A DeleteActionSorter woudl have to rearrange DELETES in the opposite order as the INSERT sorting, the Children having to be deleted first. The current work-around is to dissociate all C