-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate Index features and introduce IndexEditor #6886
Conversation
@@ -15,13 +16,17 @@ final class IndexedColumn | |||
*/ | |||
public function __construct(private readonly UnqualifiedName $columnName, private readonly ?int $length) | |||
{ | |||
if ($length !== null && $length <= 0) { | |||
throw InvalidIndexDefinition::fromNonPositiveColumnLength($length); | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a breaking change. Index
will catch this exception and turn into a deprecation notice. An InvalidState
exception will be thrown only upon attempt to access the indexed columns via the new API:
dbal/tests/Schema/IndexTest.php
Lines 255 to 264 in feed861
public function testNonPositiveColumnLength(): void | |
{ | |
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/dbal/pull/6787'); | |
$index = new Index('idx_user_name', ['name'], false, false, [], ['lengths' => [-1]]); | |
$this->expectException(InvalidState::class); | |
$index->getIndexedColumns(); | |
} |
0cac859
to
cd00543
Compare
cd00543
to
386959b
Compare
This is a continuation of the rework started in #6685 (unique constraints) and #6728 (foreign key constraints), now applied to indexes. See the upgrade notes for details on the end-user impact.
Deprecation details
The
Index#overrules()
method is currently used by the ORM'sSchemaTool
(source). It should be easy to replace with a check if the the index columns are the same or a prefix of the PK columns. All other logic ofoverrules()
(checking for the index type and the details of the partial index) is irrelevant in this case. I don't really understand howIndex#overrules()
is different fromIndex#isFulfilledBy()
(besides the fact that it means the opposite).Index#isFulfilledBy()
will be available for now, but as soon as we get rid of implicit indexes (not very soon), it will become irrelevant to the DBAL. At that point, the ORM will be a more appropriate place for it.