]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Lazy loader will not use get() if the "lazy load"
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Mar 2009 21:21:10 +0000 (21:21 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Mar 2009 21:21:10 +0000 (21:21 +0000)
commitd0f67e2c4de4b688409c2589018fdfdba65e837f
tree1c2b6866e03f69232c33eb5b5eba50c057b2c13c
parent290ff9930a33a5c165d3952a7bd1ed858b7a4572
- Lazy loader will not use get() if the "lazy load"
SQL clause matches the clause used by get(), but
contains some parameters hardcoded.  Previously
the lazy strategy would fail with the get().  Ideally
get() would be used with the hardcoded parameters
but this would require further development.
[ticket:1357]
CHANGES
lib/sqlalchemy/sql/expression.py
test/orm/lazy_relations.py
test/sql/select.py