diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-04-27 11:37:58 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-04-27 11:37:58 -0500 |
| commit | f3bc60bdd809235cbeb3f414717ac0e273269cf9 (patch) | |
| tree | eec41353d94d79aae07ebae6c42fe0df66526702 /doc | |
| parent | 84ba09a7d7b0160d8e3e52269519d0df0cd175ac (diff) | |
| download | sqlalchemy-f3bc60bdd809235cbeb3f414717ac0e273269cf9.tar.gz | |
Don't double-process ResultMetaData for BufferedColumnResultProxy
Fixed a bug in the result proxy used mainly by Oracle when binary and
other LOB types are in play, such that when query / statement caching
were used, the type-level result processors, notably that required by
the binary type itself but also any other processor, would become lost
after the first run of the statement due to it being removed from the
cached result metadata.
Change-Id: I751940866cffb4f48de46edc8137482eab59790c
Fixes: #3699
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_10.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index a30e3c567..352f00c8d 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -19,6 +19,17 @@ :version: 1.0.13 .. change:: + :tags: bug, oracle + :tickets: 3699 + + Fixed a bug in the result proxy used mainly by Oracle when binary and + other LOB types are in play, such that when query / statement caching + were used, the type-level result processors, notably that required by + the binary type itself but also any other processor, would become lost + after the first run of the statement due to it being removed from the + cached result metadata. + + .. change:: :tags: bug, examples :tickets: 3698 |
