]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
sync up some changes for #2604 and #2607 from 0.7.10, 0.8.0b2
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 15 Nov 2013 03:11:22 +0000 (22:11 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 15 Nov 2013 03:12:09 +0000 (22:12 -0500)
doc/build/changelog/changelog_07.rst
doc/build/changelog/changelog_08.rst

index 68e03a2e25d24e0817ad299428e3526aa1338bfd..40dcc832c0934a677e71cc86703e1f92d7c2d79c 100644 (file)
     :version: 0.7.10
     :released: Thu Feb 7 2013
 
+    .. change::
+        :tags: engine, bug
+        :tickets: 2604
+        :versions: 0.8.0b2
+
+      Fixed :meth:`.MetaData.reflect` to correctly use
+      the given :class:`.Connection`, if given, without
+      opening a second connection from that connection's
+      :class:`.Engine`.
+
+    .. change::
+        :tags: mssql, bug
+        :tickets:2607
+        :versions: 0.8.0b2
+
+      Fixed bug whereby using "key" with Column
+      in conjunction with "schema" for the owning
+      Table would fail to locate result rows due
+      to the MSSQL dialect's "schema rendering"
+      logic's failure to take .key into account.
+
     .. change::
         :tags: sql, mysql, gae
         :tickets: 2649
index 15c78a3dc350bcd649a4619f95683046133965e3..3a5844bbb4ec47d1aff6e62eae450d9c9abcb734 100644 (file)
       The "reflect=True" argument to :class:`~sqlalchemy.schema.MetaData` is deprecated.
       Please use the :meth:`.MetaData.reflect` method.
 
-    .. change::
-        :tags: engine, bug
-        :tickets: 2604
-
-      Fixed :meth:`.MetaData.reflect` to correctly use
-      the given :class:`.Connection`, if given, without
-      opening a second connection from that connection's
-      :class:`.Engine`.  Also in 0.7.10.
-
-    .. change::
-        :tags: mssql, bug
-        :tickets: 2607
-
-      Fixed bug whereby using "key" with Column
-      in conjunction with "schema" for the owning
-      Table would fail to locate result rows due
-      to the MSSQL dialect's "schema rendering"
-      logic's failure to take .key into account.
-      Also in 0.7.10.
-
     .. change::
         :tags: sql, bug
         :tickets: 2603