From: Mike Bayer Date: Fri, 27 Apr 2007 17:33:25 +0000 (+0000) Subject: removed 'unjoined_table', synonymous with local_table X-Git-Tag: rel_0_3_7~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14645af693d7b1dccea1ccff7c7629ae6170653d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git removed 'unjoined_table', synonymous with local_table --- diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py index ea5aa556ff..ab90f24b6f 100644 --- a/lib/sqlalchemy/orm/mapper.py +++ b/lib/sqlalchemy/orm/mapper.py @@ -473,14 +473,12 @@ class Mapper(object): # local_table - the Selectable that was passed to this Mapper's constructor, if any # select_table - the Selectable that will be used during queries. if this is specified # as a constructor keyword argument, it takes precendence over mapped_table, otherwise its mapped_table - # unjoined_table - our Selectable, minus any joins constructed against the inherits table. # this is either select_table if it was given explicitly, or in the case of a mapper that inherits # its local_table # tables - a collection of underlying Table objects pulled from mapped_table if self.select_table is None: self.select_table = self.mapped_table - self.unjoined_table = self.local_table # locate all tables contained within the "table" passed in, which # may be a join or other construct