From 14645af693d7b1dccea1ccff7c7629ae6170653d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 27 Apr 2007 17:33:25 +0000 Subject: [PATCH] removed 'unjoined_table', synonymous with local_table --- lib/sqlalchemy/orm/mapper.py | 2 -- 1 file changed, 2 deletions(-) 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 -- 2.47.2