]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- merge() includes a keyword argument "dont_load=True". setting this flag will cause
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 Nov 2007 17:58:20 +0000 (17:58 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 Nov 2007 17:58:20 +0000 (17:58 +0000)
commit4161271a8c44c2392d8fc09a91391d6b0619dc9c
tree81b2fc5288690bd0c453f9d35518f74a485adecd
parentceb782ba49f494c5aca0c31a60f77d87373ae2ea
- merge() includes a keyword argument "dont_load=True".  setting this flag will cause
the merge operation to not load any data from the database in response to incoming
detached objects, and will accept the incoming detached object as though it were
already present in that session.  Use this to merge detached objects from external
caching systems into the session.
CHANGES
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/session.py
test/orm/merge.py