]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Oracle reflection of indexes has been tuned so
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Aug 2010 21:06:05 +0000 (17:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Aug 2010 21:06:05 +0000 (17:06 -0400)
commit36fa24603f20ff6afc537cc97310d90efc667959
tree24521f57bd061dd7975961103339acdd906e8790
parent87fd1e3260d957ae25c44cc2ac30ce97feb89b35
- Oracle reflection of indexes has been tuned so
that indexes which include some or all primary
key columns, but not the same set of columns
as that of the primary key, are reflected.
Indexes which contain the identical columns
as that of the primary key are skipped within
reflection, as the index in that case is assumed
to be the auto-generated primary key index.
Previously, any index with PK columns present
would be skipped.  Thanks to Kent Bower
for the patch.  [ticket:1867]

- Oracle now reflects the names of primary key
constraints - also thanks to Kent Bower.
[ticket:1868]
CHANGES
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/test/requires.py
test/dialect/test_oracle.py