Merge branch '3.6' of https://github.com/nandina/hibernate-core into 3.6
This commit is contained in:
commit
b775430385
|
@ -65,7 +65,12 @@ public class BasicCollectionInitializor<T extends Collection> extends AbstractCo
|
|||
|
||||
@SuppressWarnings({"unchecked"})
|
||||
protected void addToCollection(T collection, Object collectionRow) {
|
||||
Object elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
// collectionRow will be the actual object if retrieved from audit relation or middle table
|
||||
// otherwise it will be a List
|
||||
Object elementData = collectionRow;
|
||||
if (collectionRow instanceof java.util.List) {
|
||||
elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
}
|
||||
|
||||
// If the target entity is not audited, the elements may be the entities already, so we have to check
|
||||
// if they are maps or not.
|
||||
|
|
|
@ -63,13 +63,19 @@ public class ListCollectionInitializor extends AbstractCollectionInitializor<Lis
|
|||
|
||||
@SuppressWarnings({"unchecked"})
|
||||
protected void addToCollection(List collection, Object collectionRow) {
|
||||
Object elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
// collectionRow will be the actual object if retrieved from audit relation or middle table
|
||||
// otherwise it will be a List
|
||||
Object elementData = collectionRow;
|
||||
Object indexData = collectionRow;
|
||||
if (collectionRow instanceof java.util.List) {
|
||||
elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
indexData = ((List) collectionRow).get(indexComponentData.getComponentIndex());
|
||||
}
|
||||
Object element = elementData instanceof Map ?
|
||||
elementComponentData.getComponentMapper().mapToObjectFromFullMap(entityInstantiator,
|
||||
(Map<String, Object>) elementData, null, revision)
|
||||
: elementData ;
|
||||
|
||||
Object indexData = ((List) collectionRow).get(indexComponentData.getComponentIndex());
|
||||
Object indexObj = indexComponentData.getComponentMapper().mapToObjectFromFullMap(entityInstantiator,
|
||||
(Map<String, Object>) indexData, element, revision);
|
||||
int index = ((Number) indexObj).intValue();
|
||||
|
|
|
@ -67,11 +67,17 @@ public class MapCollectionInitializor<T extends Map> extends AbstractCollectionI
|
|||
|
||||
@SuppressWarnings({"unchecked"})
|
||||
protected void addToCollection(T collection, Object collectionRow) {
|
||||
Object elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
// collectionRow will be the actual object if retrieved from audit relation or middle table
|
||||
// otherwise it will be a List
|
||||
Object elementData = collectionRow;
|
||||
Object indexData = collectionRow;
|
||||
if (collectionRow instanceof java.util.List) {
|
||||
elementData = ((List) collectionRow).get(elementComponentData.getComponentIndex());
|
||||
indexData = ((List) collectionRow).get(indexComponentData.getComponentIndex());
|
||||
}
|
||||
Object element = elementComponentData.getComponentMapper().mapToObjectFromFullMap(entityInstantiator,
|
||||
(Map<String, Object>) elementData, null, revision);
|
||||
|
||||
Object indexData = ((List) collectionRow).get(indexComponentData.getComponentIndex());
|
||||
Object index = indexComponentData.getComponentMapper().mapToObjectFromFullMap(entityInstantiator,
|
||||
(Map<String, Object>) indexData, element, revision);
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ public final class OneAuditEntityQueryGenerator implements RelationQueryGenerato
|
|||
|
||||
/*
|
||||
* The query that we need to create:
|
||||
* SELECT new list(e) FROM versionsReferencedEntity e
|
||||
* SELECT e FROM versionsReferencedEntity e
|
||||
* WHERE
|
||||
* (only entities referenced by the association; id_ref_ing = id of the referencing entity)
|
||||
* e.id_ref_ing = :id_ref_ing AND
|
||||
|
@ -73,9 +73,9 @@ public final class OneAuditEntityQueryGenerator implements RelationQueryGenerato
|
|||
|
||||
String versionsReferencedEntityName = verEntCfg.getAuditEntityName(referencedEntityName);
|
||||
|
||||
// SELECT new list(e) FROM versionsEntity e
|
||||
// SELECT e FROM versionsEntity e
|
||||
QueryBuilder qb = new QueryBuilder(versionsReferencedEntityName, "e");
|
||||
qb.addProjection("new list", "e", false, false);
|
||||
qb.addProjection(null, "e", false, false);
|
||||
// WHERE
|
||||
Parameters rootParameters = qb.getRootParameters();
|
||||
// e.id_ref_ed = :id_ref_ed
|
||||
|
|
|
@ -53,7 +53,7 @@ public final class OneEntityQueryGenerator implements RelationQueryGenerator {
|
|||
|
||||
/*
|
||||
* The query that we need to create:
|
||||
* SELECT new list(ee) FROM middleEntity ee WHERE
|
||||
* SELECT ee FROM middleEntity ee WHERE
|
||||
* (only entities referenced by the association; id_ref_ing = id of the referencing entity)
|
||||
* ee.originalId.id_ref_ing = :id_ref_ing AND
|
||||
*
|
||||
|
@ -73,9 +73,9 @@ public final class OneEntityQueryGenerator implements RelationQueryGenerator {
|
|||
String revisionPropertyPath = verEntCfg.getRevisionNumberPath();
|
||||
String originalIdPropertyName = verEntCfg.getOriginalIdPropName();
|
||||
|
||||
// SELECT new list(ee) FROM middleEntity ee
|
||||
// SELECT ee FROM middleEntity ee
|
||||
QueryBuilder qb = new QueryBuilder(versionsMiddleEntityName, "ee");
|
||||
qb.addProjection("new list", "ee", false, false);
|
||||
qb.addProjection(null, "ee", false, false);
|
||||
// WHERE
|
||||
Parameters rootParameters = qb.getRootParameters();
|
||||
// ee.originalId.id_ref_ing = :id_ref_ing
|
||||
|
|
Loading…
Reference in New Issue