diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-06-25 11:12:40 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-06-25 12:45:56 -0400 |
commit | ca56d8dc32f939b2bdb1f590986d4c46d280d186 (patch) | |
tree | 304b559f58a91e90747fbc371727dd6fe51dc39e /lib | |
parent | 660a340bff8fcefd2826032e75210c0924a2335e (diff) | |
download | sqlalchemy-ca56d8dc32f939b2bdb1f590986d4c46d280d186.tar.gz |
Use index name to determine if an index is for the PK
Fixed bug in Oracle dialect where indexes that contain the full set of
primary key columns would be mistaken as the primary key index itself,
which is omitted, even if there were multiples. The check has been refined
to compare the name of the primary key constraint against the index name
itself, rather than trying to guess based on the columns present in the
index.
Fixes: #5421
Change-Id: I47c2ccdd0b13977cfd9ef249d4de06371c4fb241
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqlalchemy/dialects/oracle/base.py | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py index 5e912a0c2..34c665fbe 100644 --- a/lib/sqlalchemy/dialects/oracle/base.py +++ b/lib/sqlalchemy/dialects/oracle/base.py @@ -1898,7 +1898,7 @@ class OracleDialect(default.DefaultDialect): dblink=dblink, info_cache=kw.get("info_cache"), ) - pkeys = pk_constraint["constrained_columns"] + uniqueness = dict(NONUNIQUE=False, UNIQUE=True) enabled = dict(DISABLED=False, ENABLED=True) @@ -1906,9 +1906,22 @@ class OracleDialect(default.DefaultDialect): index = None for rset in rp: + index_name_normalized = self.normalize_name(rset.index_name) + + # skip primary key index. This is refined as of + # [ticket:5421]. Note that ALL_INDEXES.GENERATED will by "Y" + # if the name of this index was generated by Oracle, however + # if a named primary key constraint was created then this flag + # is false. + if ( + pk_constraint + and index_name_normalized == pk_constraint["name"] + ): + continue + if rset.index_name != last_index_name: index = dict( - name=self.normalize_name(rset.index_name), + name=index_name_normalized, column_names=[], dialect_options={}, ) @@ -1930,18 +1943,6 @@ class OracleDialect(default.DefaultDialect): ) last_index_name = rset.index_name - def upper_name_set(names): - return {i.upper() for i in names} - - pk_names = upper_name_set(pkeys) - if pk_names: - - def is_pk_index(index): - # don't include the primary key index - return upper_name_set(index["column_names"]) == pk_names - - indexes = [idx for idx in indexes if not is_pk_index(idx)] - return indexes @reflection.cache |