From d6be70e35b142f78fba305805d0a1574fdfd87dc Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 11 Aug 2025 10:15:12 -0400 Subject: [PATCH] doc fixes Change-Id: Iee65f09ea17bfa7a39fe3da05f22007f92b76f29 (cherry picked from commit b5172fcdb7050c9ac7f94a40fd2076bd21d6228f) --- doc/build/changelog/unreleased_20/12711.rst | 2 +- doc/build/core/connections.rst | 2 +- lib/sqlalchemy/engine/interfaces.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/build/changelog/unreleased_20/12711.rst b/doc/build/changelog/unreleased_20/12711.rst index f39a3b1ed1..fce567f775 100644 --- a/doc/build/changelog/unreleased_20/12711.rst +++ b/doc/build/changelog/unreleased_20/12711.rst @@ -3,6 +3,6 @@ :tickets: 12711 Extended :class:`_oracle.VECTOR` to support sparse vectors. This update - introduces :class:_oracle.VectorStorageType to specify sparse or dense + introduces :class:`_oracle.VectorStorageType` to specify sparse or dense storage and added :class:`_oracle.SparseVector`. Pull request courtesy Suraj Shaw. diff --git a/doc/build/core/connections.rst b/doc/build/core/connections.rst index e1c25474e5..86e27a280e 100644 --- a/doc/build/core/connections.rst +++ b/doc/build/core/connections.rst @@ -544,7 +544,7 @@ When seeking this pattern, it should be preferred to set AUTOCOMMIT engine wide using the :paramref:`.create_engine.isolation_level` so that pooled connections are permanently set in autocommit mode. The SQLAlchemy connection pool as well as the :class:`.Connection` will still seek to invoke the DBAPI -``.rollback()`` method upon connection :term:`reset`, as their behavior +``.rollback()`` method upon connection :term:`release`, as their behavior remains agonstic of the isolation level that's configured on the connection. As this rollback still incurs a network round trip under most if not all DBAPI drivers, this additional network trip may be disabled using the diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index 25e8d72bc9..37093e8062 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -780,7 +780,7 @@ class Dialect(EventTarget): """the isolation that is implicitly present on new connections""" skip_autocommit_rollback: bool - """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback + """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback` parameter was set. .. versionadded:: 2.0.43 -- 2.47.3