Skip to content
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

Merged
merged 4 commits into from
Apr 5, 2025

Conversation

morozov
Copy link
Member

@morozov morozov commented Apr 3, 2025

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's SchemaTool (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 of overrules() (checking for the index type and the details of the partial index) is irrelevant in this case. I don't really understand how Index#overrules() is different from Index#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.

@morozov morozov added this to the 4.3.0 milestone Apr 3, 2025
@morozov morozov marked this pull request as ready for review April 3, 2025 00:49
@morozov morozov requested review from greg0ire and derrabus April 3, 2025 00:49
@@ -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);
}
Copy link
Member Author

@morozov morozov Apr 3, 2025

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:

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();
}

@morozov morozov force-pushed the index-deprecations branch 2 times, most recently from 0cac859 to cd00543 Compare April 3, 2025 01:16
@morozov morozov force-pushed the index-deprecations branch from cd00543 to 386959b Compare April 4, 2025 22:03
@morozov morozov merged commit fb73632 into doctrine:4.3.x Apr 5, 2025
68 checks passed
@morozov morozov deleted the index-deprecations branch April 5, 2025 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants