mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-23 19:57:08 +00:00
HHH-13752 - Deletion of entities with many-to-many assocations using non-primary keys for join table
This commit is contained in:
parent
58dd469e4c
commit
11455f3467
@ -85,7 +85,7 @@ public DeleteExecutor(HqlSqlWalker walker, Queryable persister) {
|
|||||||
for ( String propertyName : componentType.getPropertyNames() ) {
|
for ( String propertyName : componentType.getPropertyNames() ) {
|
||||||
Collections.addAll( columns, persister.toColumns( propertyName ) );
|
Collections.addAll( columns, persister.toColumns( propertyName ) );
|
||||||
}
|
}
|
||||||
columnNames = columns.toArray( new String[columns.size()] );
|
columnNames = columns.toArray( new String[0] );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
columnNames = persister.getIdentifierColumnNames();
|
columnNames = persister.getIdentifierColumnNames();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user