]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- repair a regression caused by #3282, where we no longer were
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Apr 2015 18:14:11 +0000 (14:14 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Apr 2015 18:14:11 +0000 (14:14 -0400)
commit39978060b0d81bd470aade97e608c189b6958dfa
tree07fa0fc99fba3ec3435a78647375b52df8b39811
parentf704b7265a634be70f0255adfb2a084b7384b727
- repair a regression caused by #3282, where we no longer were
applying any topological sort to tables on SQLite.  See the
changelog for details, but we now continue to sort
tables for SQLite on DROP, prohibit the sort from considering
alter, and only warn if we encounter an unresolvable cycle, in
which case, then we forego the ordering.  use_alter as always
is used to break such a cycle.
fixes #3378
doc/build/changelog/changelog_10.rst
doc/build/changelog/migration_10.rst
lib/sqlalchemy/sql/ddl.py
lib/sqlalchemy/testing/assertsql.py
lib/sqlalchemy/testing/engines.py
lib/sqlalchemy/testing/util.py
test/sql/test_constraints.py