summaryrefslogtreecommitdiff
path: root/test/orm/test_loading.py
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed bug where if an exception were thrown at the start of aMike Bayer2015-01-051-3/+30
| | | | | | | | | | :class:`.Query` before it fetched results, particularly when row processors can't be formed, the cursor would stay open with results pending and not actually be closed. This is typically only an issue on an interpreter like Pypy where the cursor isn't immediately GC'ed, and can in some circumstances lead to transactions/ locks being open longer than is desirable. fixes #3285
* - the raw 2to3 runMike Bayer2013-04-271-2/+2
| | | | - went through examples/ and cleaned out excess list() calls
* :meth:`.Query.merge_result` can now load rows from an outer joinMike Bayer2013-01-081-1/+23
| | | | | where an entity may be ``None`` without throwing an error. [ticket:2640]
* - add coverage for merge_result() [ticket:2588]Mike Bayer2012-10-111-0/+94
- pre-determine keys for the keyed tuples