@@ -34,7 +34,7 @@ This document details individual issue-level changes made throughout
3434 :tickets: 7936
3535
3636 Fixed regression where the change made for :ticket: `7861 `, released in
37- version 1.4.33, that brought the :class: `.Insert ` construct to be partially
37+ version 1.4.33, that brought the :class: `_sql .Insert ` construct to be partially
3838 recognized as an ORM-enabled statement did not properly transfer the
3939 correct mapper / mapped table state to the :class: `.Session `, causing the
4040 :meth: `.Session.get_bind ` method to fail for a :class: `.Session ` that was
@@ -58,7 +58,7 @@ This document details individual issue-level changes made throughout
5858 :tags: bug, postgresql
5959 :tickets: 6515
6060
61- Fixed bug in :class: `.ARRAY ` datatype in combination with :class: `.Enum ` on
61+ Fixed bug in :class: `_sqltypes .ARRAY ` datatype in combination with :class: `.Enum ` on
6262 PostgreSQL where using the ``.any() `` or ``.all() `` methods to render SQL
6363 ANY() or ALL(), given members of the Python enumeration as arguments, would
6464 produce a type adaptation failure on all drivers.
@@ -87,7 +87,7 @@ This document details individual issue-level changes made throughout
8787 :tickets: 7930
8888
8989 Fixed an issue in the psycopg2 dialect when using the
90- :paramref: `.create_engine.pool_pre_ping ` parameter which would cause
90+ :paramref: `_sa .create_engine.pool_pre_ping ` parameter which would cause
9191 user-configured ``AUTOCOMMIT `` isolation level to be inadvertently reset by
9292 the "ping" handler.
9393
@@ -105,15 +105,15 @@ This document details individual issue-level changes made throughout
105105 :tags: bug, engine
106106 :tickets: 7953
107107
108- Added a warning regarding a bug which exists in the :meth: `.Result.columns `
109- method when passing 0 for the index in conjunction with a :class: `.Result `
108+ Added a warning regarding a bug which exists in the :meth: `_result .Result.columns `
109+ method when passing 0 for the index in conjunction with a :class: `_result .Result `
110110 that will return a single ORM entity, which indicates that the current
111- behavior of :meth: `.Result.columns ` is broken in this case as the
112- :class: `.Result ` object will yield scalar values and not :class: `.Row `
111+ behavior of :meth: `_result .Result.columns ` is broken in this case as the
112+ :class: `_result .Result ` object will yield scalar values and not :class: `.Row `
113113 objects. The issue will be fixed in 2.0, which would be a
114114 backwards-incompatible change for code that relies on the current broken
115115 behavior. Code which wants to receive a collection of scalar values should
116- use the :meth: `.Result.scalars ` method, which will return a new
116+ use the :meth: `_result .Result.scalars ` method, which will return a new
117117 :class: `.ScalarResult ` object that yields non-row scalar objects.
118118
119119
@@ -199,7 +199,7 @@ This document details individual issue-level changes made throughout
199199 :tickets: 7878
200200
201201 Fixed regression caused by :ticket: `7861 ` where invoking an
202- :class: `.Insert ` construct which contained ORM entities directly via
202+ :class: `_sql .Insert ` construct which contained ORM entities directly via
203203 :meth: `_orm.Session.execute ` would fail.
204204
205205 .. change ::
@@ -226,8 +226,8 @@ This document details individual issue-level changes made throughout
226226 and COMMIT log messages do not actually indicate a real transaction when
227227 the AUTOCOMMIT isolation level is in use; messaging has been extended to
228228 include the BEGIN message itself, and the messaging has also been fixed to
229- accommodate when the :class: `.Engine ` level
230- :paramref: `.create_engine.isolation_level ` parameter was used directly.
229+ accommodate when the :class: `_engine .Engine ` level
230+ :paramref: `_sa .create_engine.isolation_level ` parameter was used directly.
231231
232232 .. change ::
233233 :tags: bug, mssql, regression
@@ -314,7 +314,7 @@ This document details individual issue-level changes made throughout
314314 :tags: usecase, engine
315315 :tickets: 7877, 7815
316316
317- Added new parameter :paramref: `.Engine.dispose.close `, defaulting to True.
317+ Added new parameter :paramref: `_engine .Engine.dispose.close `, defaulting to True.
318318 When False, the engine disposal does not touch the connections in the old
319319 pool at all, simply dropping the pool and replacing it. This use case is so
320320 that when the original pool is transferred from a parent process, the
@@ -339,7 +339,7 @@ This document details individual issue-level changes made throughout
339339
340340 Added new attributes :attr: `.UpdateBase.returning_column_descriptions ` and
341341 :attr: `.UpdateBase.entity_description ` to allow for inspection of ORM
342- attributes and entities that are installed as part of an :class: `.Insert `,
342+ attributes and entities that are installed as part of an :class: `_sql .Insert `,
343343 :class: `.Update `, or :class: `.Delete ` construct. The
344344 :attr: `.Select.column_descriptions ` accessor is also now implemented for
345345 Core-only selectables.
@@ -1638,15 +1638,15 @@ This document details individual issue-level changes made throughout
16381638 :tags: bug, orm
16391639 :tickets: 7128
16401640
1641- Fixed bug where iterating a :class: `.Result ` from a :class: `_orm.Session `
1641+ Fixed bug where iterating a :class: `_result .Result ` from a :class: `_orm.Session `
16421642 after that :class: `_orm.Session ` were closed would partially attach objects
16431643 to that session in an essentially invalid state. It now raises an exception
16441644 with a link to new documentation if an **un-buffered ** result is iterated
16451645 from a :class: `_orm.Session ` that was closed or otherwise had the
1646- :meth: `_orm.Session.expunge_all ` method called after that :class: `.Result `
1646+ :meth: `_orm.Session.expunge_all ` method called after that :class: `_result .Result `
16471647 was generated. The ``prebuffer_rows `` execution option, as is used
16481648 automatically by the asyncio extension for client-side result sets, may be
1649- used to produce a :class: `.Result ` where the ORM objects are prebuffered,
1649+ used to produce a :class: `_result .Result ` where the ORM objects are prebuffered,
16501650 and in this case iterating the result will produce a series of detached
16511651 objects.
16521652
@@ -3484,7 +3484,7 @@ This document details individual issue-level changes made throughout
34843484 :tickets: 6361
34853485
34863486 Fixed issue where usage of an explicit :class: `.Sequence ` would produce
3487- inconsistent "inline" behavior for an :class: `.Insert ` construct that
3487+ inconsistent "inline" behavior for an :class: `_sql .Insert ` construct that
34883488 includes multiple values phrases; the first seq would be inline but
34893489 subsequent ones would be "pre-execute", leading to inconsistent sequence
34903490 ordering. The sequence expressions are now fully inline.
@@ -4931,7 +4931,7 @@ This document details individual issue-level changes made throughout
49314931 :tags: bug, engine, sqlite
49324932 :tickets: 5845
49334933
4934- Fixed bug in the 2.0 "future" version of :class: `.Engine ` where emitting
4934+ Fixed bug in the 2.0 "future" version of :class: `_engine .Engine ` where emitting
49354935 SQL during the :meth: `.EngineEvents.begin ` event hook would cause a
49364936 re-entrant (recursive) condition due to autobegin, affecting among other
49374937 things the recipe documented for SQLite to allow for savepoints and
0 commit comments