diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 17:31:40 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 17:31:40 -0400 |
commit | 97168dbf69f8aa21de2e764a4a4993215cb9b726 (patch) | |
tree | ce6b6f81eb422514877a4b5165e9246c46be9f0c | |
parent | fe66951f5de6a2b201dc3ecc2261f4f8b8888e9f (diff) | |
download | sqlalchemy-97168dbf69f8aa21de2e764a4a4993215cb9b726.tar.gz |
plus some more adjustments for mysql, or in general if an Index refers to
in-python only cols
-rw-r--r-- | lib/sqlalchemy/engine/reflection.py | 10 | ||||
-rw-r--r-- | test/engine/test_reflection.py | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py index 28494dc7d..a9ccf5539 100644 --- a/lib/sqlalchemy/engine/reflection.py +++ b/lib/sqlalchemy/engine/reflection.py @@ -534,6 +534,8 @@ class Inspector(object): fkeys = self.get_foreign_keys(table_name, schema, **tblkw) for fkey_d in fkeys: conname = fkey_d['name'] + # look for columns by orig name in cols_by_orig_name, + # but support columns that are in-Python only as fallback constrained_columns = [ cols_by_orig_name[c].key if c in cols_by_orig_name else c @@ -578,5 +580,11 @@ class Inspector(object): "Omitting %s KEY for (%s), key covers omitted columns." % (flavor, ', '.join(columns))) continue - sa_schema.Index(name, *[cols_by_orig_name[c] for c in columns], + # look for columns by orig name in cols_by_orig_name, + # but support columns that are in-Python only as fallback + sa_schema.Index(name, *[ + cols_by_orig_name[c] if c in cols_by_orig_name + else table.c[c] + for c in columns + ], **dict(unique=unique)) diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index 532de1c35..4b8fe8a04 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -1430,11 +1430,13 @@ class ColumnEventsTest(fixtures.TestBase): 'to_reflect', cls.metadata, Column('x', sa.Integer, primary_key=True), + test_needs_fk=True ) cls.related = Table( 'related', cls.metadata, - Column('q', sa.Integer, sa.ForeignKey('to_reflect.x')) + Column('q', sa.Integer, sa.ForeignKey('to_reflect.x')), + test_needs_fk=True ) sa.Index("some_index", cls.to_reflect.c.x) cls.metadata.create_all(testing.db) |