]> 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)
commit9e3458c4793e863737df371774b39c4c05858abd
tree66f0e323bc04d35fc7794b7a33cb75068be9a0b3
parentb76995600a633ed769530a00b6489560456e7b0c
  - [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