]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
added 'noninherited table' prop to mapper indicating the "lead" table, in the case of
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Mar 2006 00:24:15 +0000 (00:24 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Mar 2006 00:24:15 +0000 (00:24 +0000)
commitb5060e88ff4604af4c9e51003a078dbb59fce968
tree539fe14f93a268875e1ea4717c50dbaaf3c66e90
parentf057ed6136fe5583d4174a55153544783e76699a
added 'noninherited table' prop to mapper indicating the "lead" table, in the case of
inheritance.  relations now create priamry/secondary joins against that lead table.  if you want to create it against
an inherited table, use explicit join conditions.
added 'correlate' argument to CompoundSelect to get polymorph example working again.
CHANGES
examples/polymorph/polymorph.py
lib/sqlalchemy/mapping/mapper.py
lib/sqlalchemy/mapping/properties.py
lib/sqlalchemy/sql.py
test/inheritance.py