]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added :meth:`.Inspector.get_temp_table_names` and
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Sep 2014 19:15:21 +0000 (15:15 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Sep 2014 19:15:21 +0000 (15:15 -0400)
commitcb23fa243f5138aac7acb2a134d567f1a297d42e
tree7cd9b791c2574eb5d9f679da1c2d0ca0840f0ae9
parent1217d6ce97bd469b3ec2c17f6f955730059d571f
- Added :meth:`.Inspector.get_temp_table_names` and
:meth:`.Inspector.get_temp_view_names`; currently, only the
SQLite dialect supports these methods.    The return of temporary
table and view names has been **removed** from SQLite's version
of :meth:`.Inspector.get_table_names` and
:meth:`.Inspector.get_view_names`; other database backends cannot
support this information (such as MySQL), and the scope of operation
is different in that the tables can be local to a session and
typically aren't supported in remote schemas.
fixes #3204
doc/build/changelog/changelog_10.rst
doc/build/changelog/migration_10.rst
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/engine/reflection.py
lib/sqlalchemy/testing/requirements.py
lib/sqlalchemy/testing/suite/test_reflection.py
test/dialect/test_sqlite.py
test/requirements.py