]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The composite() property type now supports
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 11 Aug 2008 17:18:10 +0000 (17:18 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 11 Aug 2008 17:18:10 +0000 (17:18 +0000)
commitd55d29329e6cc2f11d9dadb11f01ad6a7e8d258a
tree738ecfe5ab59b202db1ffdbd9365ef4bf89ace31
parent50c4825b54502bdd73b531704b87d463c6edda88
- The composite() property type now supports
a __set_composite_values__() method on the composite
class which is required if the class represents
state using attribute names other than the
column's keynames; default-generated values now
get populated properly upon flush.  Also,
composites with attributes set to None compare
correctly.  [ticket:1132]
CHANGES
doc/build/content/mappers.txt
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/strategies.py
test/orm/mapper.py