]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- add __table_cls__ option to declarative, not publicized yet, is for the moment
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Mar 2012 20:14:14 +0000 (13:14 -0700)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Mar 2012 20:14:14 +0000 (13:14 -0700)
commit6c03a8ddd366b62285e2671a25a429f7bff1d052
tree3ef6f29e6a2b04f6112345d501d10fd2a5f184fd
parent5448f6129cd0487c3d06324385cc2ef0701b5815
- add __table_cls__ option to declarative, not publicized yet, is for the moment
for the benefit of the test.lib.schema package.
- use test.lib.schema.Table for the table within test.lib.fixtures.DeclarativeMappedTest
- [bug] Removed the check for number of
rows affected when doing a multi-delete
against mapped objects.   If an ON DELETE
CASCADE exists between two rows, we can't
get an accurate rowcount from the DBAPI;
this particular count is not supported
on most DBAPIs in any case, MySQLdb
is the notable case where it is.
[ticket:2403]
CHANGES
lib/sqlalchemy/ext/declarative.py
lib/sqlalchemy/orm/persistence.py
test/lib/fixtures.py
test/orm/test_unitofwork.py