]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fix quoting schemas in _get_table_sql for the SQLite backend
authorPhillip Cloud <cpcloud@gmail.com>
Mon, 16 Jul 2018 14:10:55 +0000 (10:10 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 Jul 2018 14:48:53 +0000 (10:48 -0400)
commita2047f781072a3cd315ea6f09eed70d75f0012b2
treeaf98c02d738329f49fa353400ed40e161c340e3c
parent021dcd123c3e13e90e5b79b8a9104131c8165682
Fix quoting schemas in _get_table_sql for the SQLite backend

Fixed issue where the "schema" name used for a SQLite database within table
reflection would not quote the schema name correctly.  Pull request
courtesy Phillip Cloud.

Change-Id: I2770788c1f094a7743209250ec26b5ef5fb2d9e8
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/463
(cherry picked from commit 893eac06e511f3765c0c89bab76d7933d83ffccc)
doc/build/changelog/unreleased_12/pr824.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/sqlite/base.py
test/dialect/test_sqlite.py