mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
[PR #6554] Move identifier generation to FieldMetadata #10031
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?
Original Pull Request: https://github.com/doctrine/orm/pull/6554
State: closed
Merged: Yes
Removed ClassMetadata::$generatorType, ClassMetadata::$generatorDefinition and ClassMetadata::$idGenerator and related methods.
Some pieces of code (UoW in particular) are not really nice because of original assumptions about single vs. composite keys and generator types, but it'll eventually undergo further reactorings and generalization soon with introduction of ValueGenerationPlan...
Removed two tests:
Default test suite passes, test suite w/ postgres has same number of failures compared to develop.
Working version of #6551.