]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The SQLite dialect will now skip unsupported arguments when reflecting
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 16 Feb 2014 22:20:18 +0000 (17:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 16 Feb 2014 22:20:18 +0000 (17:20 -0500)
commit5e100a70c51362b522c8d4a05c0149c7d77672fb
treeef92cedadf4a0277c247e39497f28ef7efa08cff
parent79f801eae889ee6ee098ce3cd3b0ca98b852d2f5
- The SQLite dialect will now skip unsupported arguments when reflecting
types; such as if it encounters a string like ``INTEGER(5)``, the
:class:`.INTEGER` type will be instantiated without the "5" being included,
based on detecting a ``TypeError`` on the first attempt.
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/dialects/sqlite/base.py
test/dialect/test_sqlite.py