summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-11 12:48:46 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-11 12:48:46 -0400
commit5f0b864ad02409cf668fa7db5cbac99ac6ffc329 (patch)
treeb5f695e1fe739f65c38245a4ee83b48df0464591 /doc
parente74627f827542044c1d2087be95e41d4b1b46f24 (diff)
downloadsqlalchemy-5f0b864ad02409cf668fa7db5cbac99ac6ffc329.tar.gz
- The method signature of :meth:`.Dialect.reflecttable`, which in
all known cases is provided by :class:`.DefaultDialect`, has been tightened to expect ``include_columns`` and ``exclude_columns`` arguments without any kw option, reducing ambiguity - previously ``exclude_columns`` was missing. [ticket:2748]
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index aec107acd..fc4f79f4c 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -13,6 +13,16 @@
:version: 0.9.0
.. change::
+ :tags: bug, engine
+ :tickets: 2748
+
+ The method signature of :meth:`.Dialect.reflecttable`, which in
+ all known cases is provided by :class:`.DefaultDialect`, has been
+ tightened to expect ``include_columns`` and ``exclude_columns``
+ arguments without any kw option, reducing ambiguity - previously
+ ``exclude_columns`` was missing.
+
+ .. change::
:tags: bug, sql
:tickets: 2831