From c8637ba660aec9f718e5e3d38a1c0c62983bbdb0 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 3 Apr 2006 05:00:53 +0000 Subject: made order_by/group_by construction a little more simplisitc fix to mapper extension CompoundSelect can export all columns now, not sure if theres any advantage there --- lib/sqlalchemy/mapping/mapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/mapping') diff --git a/lib/sqlalchemy/mapping/mapper.py b/lib/sqlalchemy/mapping/mapper.py index a9f7df63c..d6b1fb015 100644 --- a/lib/sqlalchemy/mapping/mapper.py +++ b/lib/sqlalchemy/mapping/mapper.py @@ -1062,7 +1062,7 @@ class MapperExtension(object): if self.next is None: return EXT_PASS else: - return self.next.populate_instance(row, imap, result, instance, isnew) + return self.next.populate_instance(mapper, instance, row, identitykey, imap, isnew) def before_insert(self, mapper, instance): """called before an object instance is INSERTed into its table. -- cgit v1.2.1