]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added new 'compiled_cache' execution option. A dictionary
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Apr 2010 17:59:18 +0000 (13:59 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Apr 2010 17:59:18 +0000 (13:59 -0400)
commit5d61549f3db69b6edc75cc07cb3d114a5c9aee50
tree126cd8be63158220bfbd8738f24deb55d8e8e81a
parent822a6b57869e0091f439125ef9593b6c55af8352
- Added new 'compiled_cache' execution option.  A dictionary
where Compiled objects will be cached when the Connection
compiles a clause expression into a dialect- and parameter-
specific Compiled object.  It is the user's responsibility to
manage the size of this dictionary, which will have keys
corresponding to the dialect, clause element, the column
names within the VALUES or SET clause of an INSERT or UPDATE,
as well as the "batch" mode for an INSERT or UPDATE statement.
CHANGES
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/sql/expression.py
test/engine/test_execute.py