summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-09-17 15:19:19 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-09-17 15:19:19 -0400
commitc926df36173e45cfd45807e197f4f4f63ca5128b (patch)
tree48499f57510f64b80caaa30b9225cea28e391ce7
parent7864f80a62ee17fc6d31c7531b179685d097dd98 (diff)
downloadsqlalchemy-c926df36173e45cfd45807e197f4f4f63ca5128b.tar.gz
- changelog for #3203; fixes #3203
-rw-r--r--doc/build/changelog/changelog_10.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 7bfcb574e..ca612c0ef 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -23,6 +23,20 @@
.. change::
:tags: bug, sqlite
+ :tickets: 3203
+ :pullreq: bitbucket:31
+
+ SQLite now supports reflection of unique constraints from
+ temp tables; previously, this would fail with a TypeError.
+ Pull request courtesy Johannes Erdfelt.
+
+ .. seealso::
+
+ :ref:`change_3204` - changes regarding SQLite temporary
+ table and view reflection.
+
+ .. change::
+ :tags: bug, sqlite
:tickets: 3204
Added :meth:`.Inspector.get_temp_table_names` and