summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-08 19:47:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-08 19:47:13 -0400
commit9df4651fba6d1cd3d2b490f58263cc45a81788f4 (patch)
tree03289aaa180ca7a5452740a73c2f0e6c9b1979fd /doc
parent5f07d4b7acc7fee3eb9d9621e0aece96718b902f (diff)
downloadsqlalchemy-9df4651fba6d1cd3d2b490f58263cc45a81788f4.tar.gz
Fixed bug where using an annotation such as :func:`.remote` or
:func:`.foreign` on a :class:`.Column` before association with a parent :class:`.Table` could produce issues related to the parent table not rendering within joins, due to the inherent copy operation performed by an annotation. [ticket:2813]
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_08.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index 9e65389ca..87dbc8f93 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -11,6 +11,17 @@
:version: 0.8.3
.. change::
+ :tags: bug, orm
+ :tickets: 2813
+ :versions: 0.9.0
+
+ Fixed bug where using an annotation such as :func:`.remote` or
+ :func:`.foreign` on a :class:`.Column` before association with a parent
+ :class:`.Table` could produce issues related to the parent table not
+ rendering within joins, due to the inherent copy operation performed
+ by an annotation.
+
+ .. change::
:tags: bug, sql
:tickets: 2831