mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
[PR #38] [CLOSED] [2.0.x] Fixed an undefined index by a HydrationException #7629
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/doctrine/orm/pull/38
Author: @francisbesset
Created: 3/21/2011
Status: ❌ Closed
Base:
master← Head:parent_object_not_found📝 Commits (10+)
1ca924dFix for DDC-9446bff8c3DDC-931 - SchemaTool#dropSchema() should not stop on failure of a single query (as stated in docblocks).c1f10b4DDC-617 - Throw error if selecting identification variables without picking at least one root entity alias.699cd2cDDC-945 - Throw exception in ClassMetadataFactory when mapped superclass has to many associations.b288eacMerge branch 'DDC-945' into 2.0.x18fc94bDDC-928 - Fix undefined variable notice.1059991Merge branch 'DDC-928' into 2.0.x615a115DDC-837 - Fix bug with associations of the same name not being possible in inheritance hierachies.41e5fc6Merge branch 'DDC-837' into 2.0.xcd6611aDDC-961 - Bugfix with missing first letter in automatic join table names in global namespace entities.📊 Changes
93 files changed (+2020 additions, -5714 deletions)
View changed files
📝
.gitmodules(+6 -0)📝
build.properties.dev(+3 -3)📝
build.xml(+62 -5)📝
lib/Doctrine/ORM/AbstractQuery.php(+36 -13)📝
lib/Doctrine/ORM/EntityManager.php(+2 -2)📝
lib/Doctrine/ORM/EntityRepository.php(+4 -0)📝
lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php(+17 -13)📝
lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php(+8 -4)📝
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php(+15 -6)📝
lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php(+2 -1)📝
lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php(+7 -1)📝
lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php(+28 -12)📝
lib/Doctrine/ORM/Mapping/MappingException.php(+8 -4)📝
lib/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php(+28 -5)📝
lib/Doctrine/ORM/Persisters/BasicEntityPersister.php(+90 -31)📝
lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php(+20 -19)📝
lib/Doctrine/ORM/Persisters/SingleTablePersister.php(+4 -6)📝
lib/Doctrine/ORM/Proxy/ProxyFactory.php(+21 -3)📝
lib/Doctrine/ORM/Query/Parser.php(+47 -15)📝
lib/Doctrine/ORM/Query/QueryException.php(+1 -2)...and 73 more files
📄 Description
If the parent object of relation is not found, doctrine generate an undefined index.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.