- an adjustment to the logic for #282 - if the index we see here

*is* in conn_indexes_by_name, then obviously we should leave it in.
This commit is contained in:
Mike Bayer 2015-03-10 16:14:21 -04:00
parent 46761f9d86
commit 77a6c827bf
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ class PostgresqlImpl(DefaultImpl):
conn_indexes.remove(ix)
for idx in list(metadata_indexes):
if idx.name in conn_indexes_by_name:
continue
if compat.sqla_08:
exprs = idx.expressions
else: