summaryrefslogtreecommitdiff
path: root/test/perf/ormsession.py
Commit message (Collapse)AuthorAgeFilesLines
* no need for all these scripts, not worth maintainingMike Bayer2013-04-281-225/+0
|
* - the raw 2to3 runMike Bayer2013-04-271-4/+4
| | | | - went through examples/ and cleaned out excess list() calls
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-2/+2
| | | | | | | become an externally usable package but still remains within the main sqlalchemy parent package. in this system, we use kind of an ugly hack to get the noseplugin imported outside of the "sqlalchemy" package, while still making it available within sqlalchemy for usage by third party libraries.
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-2/+2
|
* - converted all lazy=True|False|None to 'select'|'joined'|'noload'Mike Bayer2010-03-241-3/+3
| | | | | - converted all eager to joined in examples - fixed beaker/advanced.py to reference RelationshipCache
* - To accomodate the fact that there are now two kinds of eagerMike Bayer2010-03-241-2/+2
| | | | | | | | | | | | | | | | loading available, the new names for eagerload() and eagerload_all() are joinedload() and joinedload_all(). The old names will remain as synonyms for the foreseeable future. - The "lazy" flag on the relationship() function now accepts a string argument for all kinds of loading: "select", "joined", "subquery", "noload" and "dynamic", where the default is now "select". The old values of True/ False/None still retain their usual meanings and will remain as synonyms for the foreseeable future. - Added documentation to tutorial,mapper doc, api docs for subqueryload, subqueryload_all, and other options.
* - The official name for the relation() function is nowMike Bayer2010-03-171-3/+3
| | | | | | relationship(), to eliminate confusion over the relational algebra term. relation() however will remain available in equal capacity for the foreseeable future. [ticket:1740]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-3/+2
|
* - In addition to expired attributes, deferred attributesMike Bayer2008-06-211-1/+2
| | | | | also load if their data is present in the result set [ticket:870]
* Columns now have default= and server_default=. PassiveDefault fades away.Jason Kirtland2008-05-141-1/+1
|
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-6/+6
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* change the in_ API to accept a sequence or a selectable [ticket:750]Ants Aasma2007-10-161-2/+2
|
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-0/+225
maintenance branch in branches/rel_0_3.