|
This is strange that both tests are failing. But on the other hand I kind of prefer that (and my other comment with the 2 collections points to some common failure anyway)
I do have a (unrelated) question. In org.hibernate.bytecode.instrumentation.spi.AbstractFieldInterceptor.java we have this:
// let's assume that there is only one lazy fetch group, for now! uninitializedFields = null;
but in the initializeLazyProperty() method in org.hibernate.persister.entity.AbstractEntityPersister.java, if the property to initialize is a collection, it seems to me that only the collection is initialized and not the other potential lazy fields. This code was added for
HHH-10055
.
This seems wrong to me. Am I missing something?
|