From 2c94dcb72535499c43958ceb9d1ca6af25740995 Mon Sep 17 00:00:00 2001 From: Eevee Date: Tue, 5 Apr 2011 20:48:10 -0700 Subject: [PATCH 1/1] Always joinedload the local_language for a full language map. --- pokedex/db/multilang.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pokedex/db/multilang.py b/pokedex/db/multilang.py index 4adb68d..dcbe489 100644 --- a/pokedex/db/multilang.py +++ b/pokedex/db/multilang.py @@ -99,7 +99,8 @@ 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), + innerjoin=True, + lazy='joined'), }) # Add full-table relations to the original class -- 2.7.4