summaryrefslogtreecommitdiff
path: root/doc/build
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-07-11 15:15:09 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-07-11 15:15:09 -0400
commitfd55be01ddc0ab41dd9469c6c7736d12d5a2f1ea (patch)
tree460612226d5710aaf151f7552fcba6c1f7cbcd42 /doc/build
parentcd8a40284d0fb053f652f4a3d2745c22674603f8 (diff)
downloadsqlalchemy-fd55be01ddc0ab41dd9469c6c7736d12d5a2f1ea.tar.gz
Dialect.initialize() is not called a second time if an :class:`.Engine`
is recreated, due to a disconnect error. This fixes a particular issue in the Oracle 8 dialect, but in general the dialect.initialize() phase should only be once per dialect. Also in 0.8.3. [ticket:2776]
Diffstat (limited to 'doc/build')
-rw-r--r--doc/build/changelog/changelog_08.rst7
-rw-r--r--doc/build/changelog/changelog_09.rst9
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index afb0c4991..5c03b9007 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -6,6 +6,13 @@
.. changelog::
:version: 0.8.3
+ :tickets: 2776
+
+ Dialect.initialize() is not called a second time if an :class:`.Engine`
+ is recreated, due to a disconnect error. This fixes a particular
+ issue in the Oracle 8 dialect, but in general the dialect.initialize()
+ phase should only be once per dialect.
+
.. change::
:tags: feature, sql
:tickets: 722
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 21b3760b2..4eab720e0 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -7,6 +7,15 @@
:version: 0.9.0
.. change::
+ :tags: bug, engine, oracle
+ :tickets: 2776
+
+ Dialect.initialize() is not called a second time if an :class:`.Engine`
+ is recreated, due to a disconnect error. This fixes a particular
+ issue in the Oracle 8 dialect, but in general the dialect.initialize()
+ phase should only be once per dialect. Also in 0.8.3.
+
+ .. change::
:tags: feature, sql
:tickets: 722