Load local_language lazily

This commit is contained in:
Petr Viktorin 2011-04-13 18:54:32 +03:00 committed by Eevee
parent 8e1bbe0004
commit 27d33556d4

View file

@ -99,8 +99,7 @@ def create_translation_table(_table_name, foreign_class, relation_name,
'foreign_id': synonym(foreign_key_name),
'local_language': relationship(language_class,
primaryjoin=table.c.local_language_id == language_class.id,
innerjoin=True,
lazy='joined'),
innerjoin=True),
})
# Add full-table relations to the original class