summaryrefslogtreecommitdiff
path: root/test/orm/test_lockmode.py
Commit message (Collapse)AuthorAgeFilesLines
* - add support for specifying tables or entities for "of"Mike Bayer2013-11-281-98/+118
| | | | | - implement Query with_for_update() - rework docs and tests
* - fix up rendering of "of"Mike Bayer2013-11-281-4/+4
| | | | | | - move out tests, dialect specific out of compiler, compiler tests use new API, legacy API tests in test_selecatble - add support for adaptation of ForUpdateArg, alias support in compilers
* added ORM supportMario Lassnig2013-11-141-2/+51
|
* add psql FOR UPDATE OF functionalityMario Lassnig2013-11-121-0/+16
|
* 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.
* -whitespace bonanza, contdMike Bayer2012-07-281-2/+2
|
* - [feature] Added new for_update/with_lockmode()Mike Bayer2012-03-211-0/+114
options for Postgresql: for_update="read"/ with_lockmode("read"), for_update="read_nowait"/ with_lockmode("read_nowait"). These emit "FOR SHARE" and "FOR SHARE NOWAIT", respectively. Courtesy Diana Clarke [ticket:2445]