Describe Db2's index for a primary key as unique - #7479
Merged
Conversation
morozov
force-pushed
the
db2-primary-key-index-unique
branch
from
July 26, 2026 01:05
16958d5 to
69f5629
Compare
morozov
marked this pull request as ready for review
July 26, 2026 02:54
greg0ire
approved these changes
Jul 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Db2MetadataProviderclassifies an index as unique only when itsUNIQUERULEis'U'. A primary key's index is unique too, and Db2 reports it withUNIQUERULE = 'P', so the check should be "anything but'D'" ('D'is the only rule that allows duplicates).It's a no-op change on 4.5.x: the introspection query excludes primary-key indexes, so no
'P'row ever reaches the mapping:dbal/src/Platforms/Db2/Db2MetadataProvider.php
Line 266 in 4f2378d
This will become an issue if schema introspection starts reporting underlying primary key indexes (currently prototyped in #7477). Without this change, the introspection will report the primary key indexes as regular.