]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- [bug] Adjusted a very old bugfix which attempted
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Sep 2012 04:34:30 +0000 (00:34 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Sep 2012 04:34:30 +0000 (00:34 -0400)
commitda626917a8e9d5514717de07893c713c0de85b7d
treeb14cc5e38e3758ddad249b428657bc2015e29382
parent5049bf691225a11a142023873e75473cb0b68beb
- [bug] Adjusted a very old bugfix which attempted
    to work around a SQLite issue that itself was
    "fixed" as of sqlite 3.6.14, regarding quotes
    surrounding a table name when using
    the "foreign_key_list" pragma.  The fix has been
    adjusted to not interfere with quotes that
    are *actually in the name* of a column or table,
    to as much a degree as possible; sqlite still
    doesn't return the correct result for foreign_key_list()
    if the target table actually has quotes surrounding
    its name, as *part* of its name (i.e. """mytable""").
    [ticket:2568]
CHANGES
lib/sqlalchemy/dialects/sqlite/base.py
test/dialect/test_sqlite.py