summaryrefslogtreecommitdiff
path: root/doc/build
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-04-30 12:53:27 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-04-30 12:53:27 -0400
commit20e3df602846bb1d8940b5138f21ef203c99bade (patch)
tree5f6df5d7a0c2768e31ddbdf22cf76e8b4be11890 /doc/build
parent606a9b02e5c6081878aa331d1d2c3a678a671904 (diff)
downloadsqlalchemy-20e3df602846bb1d8940b5138f21ef203c99bade.tar.gz
- Fixed regression from as yet unreleased 0.9.10 where the new addition
of ``entity`` to the :attr:`.Query.column_descriptions` accessor would fail if the target entity was produced from a core selectable such as a :class:`.Table` or :class:`.CTE` object. fixes #3403 references #3320
Diffstat (limited to 'doc/build')
-rw-r--r--doc/build/changelog/changelog_09.rst3
-rw-r--r--doc/build/changelog/changelog_10.rst9
2 files changed, 12 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 2f2f59263..778881b90 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -110,6 +110,9 @@
Compared to the existing entry for ``"type"``, it will always be
a mapped entity, even if extracted from a column expression, or
None if the given expression is a pure core expression.
+ See also :ticket:`3403` which repaired a regression in this feature
+ which was unreleased in 0.9.10 but was released in the 1.0 version.
+
.. changelog::
:version: 0.9.9
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 5e32c667f..436891601 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -19,6 +19,15 @@
:version: 1.0.3
.. change::
+ :tags: bug, orm
+ :tickets: 3403, 3320
+
+ Fixed regression from as yet unreleased 0.9.10 where the new addition
+ of ``entity`` to the :attr:`.Query.column_descriptions` accessor
+ would fail if the target entity was produced from a core selectable
+ such as a :class:`.Table` or :class:`.CTE` object.
+
+ .. change::
:tags: feature, sql
Added a placeholder method :meth:`.TypeEngine.compare_against_backend`