summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/assertsql.py
Commit message (Collapse)AuthorAgeFilesLines
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-295/+0
|
* add a test for the actual feature, that multiple post updates are batchedMike Bayer2010-06-181-1/+2
|
* actually we need to copy the dict there since it gets run repeatedly inside ↵Mike Bayer2010-04-151-1/+1
| | | | of an allof...getting messier here
* adjust incoming params to add keys that are specific to the compiled, i.e. ↵Mike Bayer2010-04-151-0/+3
| | | | oracle's out params with returning
* - beef up the --reversetop test option to embed RandomSet throughout the ORMMike Bayer2010-04-151-1/+2
| | | | | | | - with m2m we have to go back to the previous approach of having both sides of the DP fire off, tracking each pair of objects. history may not be consistently present in one side or the other - this revealed a whole lot of issues with self-referential m2m, which are fixed
* starting to arrange things such that unneeded executors aren't gettingMike Bayer2010-04-081-1/+3
| | | | | | pulled into the unit of work at all. this involves dancing around lists of states, seeing if child objects exist, not adding excessive callcounts while doing that, etc.
* - added missing coverage for self-referential many-to-many flushesMike Bayer2010-04-061-6/+9
| | | | | - some other areas where per-state deps are called and an empty result returned are still lacking coverage.
* - simplify the OurSQL dialect regarding py3k, this version gives it a fairlyMike Bayer2010-02-281-2/+2
| | | | | | | fighting chance on python 3. there's an oursql bug where it can't raise an exception on executemany() correctly. - needed to add "plain_query" wrappers for all the reflection methods. not sure why this was not needed earlier.
* oracle+zxjdbc returning supportPhilip Jenvey2009-08-181-0/+3
|
* merge 0.6 series to trunk.Mike Bayer2009-08-061-1/+0
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+283
See README.unittests for information on how to run the tests. [ticket:970]