summaryrefslogtreecommitdiff
path: root/test/orm/test_sync.py
Commit message (Collapse)AuthorAgeFilesLines
* Detection of a primary key change within the processMike Bayer2013-02-251-0/+23
| | | | | | | of cascading a natural primary key update will succeed even if the key is composite and only some of the attributes have changed. [ticket:2665]
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-4/+4
| | | | | | | 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.
* - with InstanceState more public, underscore all its methodsMike Bayer2012-07-181-16/+16
| | | | | that change object state as these aren't intended for public use.
* - Fixed the error message emitted for "can'tMike Bayer2011-05-071-0/+223
execute syncrule for destination column 'q'; mapper 'X' does not map this column" to reference the correct mapper. [ticket:2163]. Also in 0.6.8. - test/orm/test_sync.py covers orm/sync.py 100%