]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
repair doc warnings
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Aug 2022 16:08:30 +0000 (12:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Aug 2022 16:08:30 +0000 (12:08 -0400)
Change-Id: I446105028539a34da90d6b8ae4812965cc398ee5

doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/7249.rst
doc/build/core/engines.rst
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/postgresql/base.py

index cf221b725d8230751f7ac9d536520b2d286d6563..41ec3f7970de6f2844dbe87555e5554137acba93 100644 (file)
@@ -155,7 +155,7 @@ This document details individual issue-level changes made throughout
         with a :class:`.Numeric` datatype would produce errors when attempting to
         reconcile the "autoincrement" column, preventing construction of the
         :class:`.Column` from using the :paramref:`.Column.autoincrement` parameter
-        as well as emitting errors when attempting to invoke an :class:`.Insert`
+        as well as emitting errors when attempting to invoke an :class:`_dml.Insert`
         construct.
 
 
@@ -195,7 +195,7 @@ This document details individual issue-level changes made throughout
         :tickets: 8073
 
         An informative error is raised for the use case where
-        :meth:`.Insert.from_select` is being passed a "compound select" object such
+        :meth:`_dml.Insert.from_select` is being passed a "compound select" object such
         as a UNION, yet the INSERT statement needs to append additional columns to
         support Python-side or explicit SQL defaults from the table metadata. In
         this case a subquery of the compound object should be passed.
@@ -233,8 +233,8 @@ This document details individual issue-level changes made throughout
 
         Fixed an issue where using :func:`.bindparam` with no explicit data or type
         given could be coerced into the incorrect type when used in expressions
-        such as when using :meth:`.ARRAY.Comparator.any` and
-        :meth:`.ARRAY.Comparator.all`.
+        such as when using :meth:`_types.ARRAY.Comparator.any` and
+        :meth:`_types.ARRAY.Comparator.all`.
 
 
     .. change::
index 5d0cb658187242d51e945834bd60b18252d3672c..5244a65a2071fe32ca406dcd1d9d93f519ffdaa5 100644 (file)
@@ -3,5 +3,5 @@
     :tickets: 7249
 
     Fixed issue where :class:`.TypeDecorator` would not correctly proxy the
-    ``__getitem__()`` operator when decorating the :class:`.ARRAY` datatype,
-    without explicit workarounds.
+    ``__getitem__()`` operator when decorating the :class:`_types.ARRAY`
+    datatype, without explicit workarounds.
index 7aa49f29d371ffa3b56c3fec8eeae029fa1a9600..be14536919ae47634837a534a32cd489434505be 100644 (file)
@@ -62,7 +62,7 @@ hostname, database name as well as optional keyword arguments for additional con
 In some cases a file path is accepted, and in others a "data source name" replaces
 the "host" and "database" portions.  The typical form of a database URL is:
 
-.. sourcecode:: plain
+.. sourcecode:: none
 
     dialect+driver://username:password@host:port/database
 
@@ -84,7 +84,7 @@ Below is an example of a URL that includes the password ``"kx@jj5/g"``, where th
 "at" sign and slash characters are represented as ``%40`` and ``%2F``,
 respectively:
 
-.. sourcecode:: plain
+.. sourcecode:: none
 
     postgresql+pg8000://dbuser:kx%40jj5%2Fg@pghost10/appdb
 
index 2d1d0f7008eb3f06b7c7969d740ab42229c22c40..ee6ce87696dae35c60af9df298d5f75a275a1226 100644 (file)
@@ -434,7 +434,7 @@ Valid values for ``isolation_level`` include:
 * ``SNAPSHOT`` - specific to SQL Server
 
 There are also more options for isolation level configurations, such as
-"sub-engine" objects linked to a main :class:`.Engine` which each apply
+"sub-engine" objects linked to a main :class:`_engine.Engine` which each apply
 different isolation level settings.  See the discussion at
 :ref:`dbapi_autocommit` for background.
 
index 95e9cd1b37d6b0f6ffed7fe13bc75340695d4a9a..111c63bff162804e5f4b26672a14171c3f70b9cf 100644 (file)
@@ -239,7 +239,7 @@ the database connection will return true for the value of
 ``SELECT @@autocommit;``.
 
 There are also more options for isolation level configurations, such as
-"sub-engine" objects linked to a main :class:`.Engine` which each apply
+"sub-engine" objects linked to a main :class:`_engine.Engine` which each apply
 different isolation level settings.  See the discussion at
 :ref:`dbapi_autocommit` for background.
 
index 23d4a49feebb578e89510471d827a76e1a47ac60..eb841700d3b169e06c0f4dba5bc92c1aaeef31e7 100644 (file)
@@ -179,7 +179,7 @@ To set using per-connection execution options::
             # ... work with transaction
 
 There are also more options for isolation level configurations, such as
-"sub-engine" objects linked to a main :class:`.Engine` which each apply
+"sub-engine" objects linked to a main :class:`_engine.Engine` which each apply
 different isolation level settings.  See the discussion at
 :ref:`dbapi_autocommit` for background.