summaryrefslogtreecommitdiff
path: root/doc/build
diff options
context:
space:
mode:
authorDiana Clarke <diana.joan.clarke@gmail.com>2016-04-05 18:58:21 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-04-06 13:28:25 -0400
commitbef15a950ec4140479bc244f9ca57b5da7c9bb3f (patch)
tree79ed72593990bb7ba482fabed575aaa8acbd815b /doc/build
parentfdb6ab6a1d5d55d900c388e039835c6433032977 (diff)
downloadsqlalchemy-bef15a950ec4140479bc244f9ca57b5da7c9bb3f.tar.gz
- don't load deferred columns on unexpire for merge with load=False,
fixes #3488 Change-Id: Ic9577b800e4a4e2465ec7f3a2e95bd231f5337ee Co-Authored-By: Mike Bayer <mike_mp@zzzcomputing.com>
Diffstat (limited to 'doc/build')
-rw-r--r--doc/build/changelog/changelog_11.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst
index 18d6d1f74..53bd38a98 100644
--- a/doc/build/changelog/changelog_11.rst
+++ b/doc/build/changelog/changelog_11.rst
@@ -22,6 +22,14 @@
:version: 1.1.0b1
.. change::
+ :tags: bug, orm
+ :tickets: 3488
+
+ Fixed bug where deferred columns would inadvertently be set up
+ for database load on the next object-wide unexpire, when the object
+ were merged into the session with ``session.merge(obj, load=False)``.
+
+ .. change::
:tags: feature, sql
:pullreq: github:231