]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
doc link fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 20 Oct 2022 17:08:52 +0000 (13:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 20 Oct 2022 17:08:52 +0000 (13:08 -0400)
Change-Id: I7f5f6b8070c01066a64f23542f644ad67db70d38

doc/build/changelog/unreleased_20/8661.rst
doc/build/core/defaults.rst

index 80dcc5ee4eec6ef18766e91f0bca598e196faccb..6b44e1928613bb87dbeebe7615ebed0e7ac9b114 100644 (file)
@@ -9,5 +9,5 @@
     despite the fact that VARCHAR can handle unlimited characters. Additional
     pyodbc-specific typing information is now passed to ``setinputsizes()``
     when the datatype's size is > 2000 characters. The change is also applied
-    to the :class:`.JSON` type which was also impacted by this issue for large
+    to the :class:`_types.JSON` type which was also impacted by this issue for large
     JSON serializations.
index 0989d742fe8f19b9d4afbca58afb528038eb53b3..848b32b17c0f7fd55ce351e10de58889fa73c5e8 100644 (file)
@@ -405,7 +405,7 @@ table will include:
   :paramref:`.MetaData.schema` setting on the :class:`.MetaData` in use;
   see :ref:`sequence_metadata` for background.
 
-When :class:`.Insert` DML constructs are invoked against the ``cartitems``
+When :class:`_dml.Insert` DML constructs are invoked against the ``cartitems``
 table, without an explicit value passed for the ``cart_id`` column, the
 ``cart_id_seq`` sequence will be used to generate a value on participating
 backends. Typically, the sequence function is embedded in the INSERT statement,
@@ -418,7 +418,7 @@ returned to the Python process:
     VALUES (next_val(cart_id_seq), 'some description', '2015-10-15 12:00:15')
     RETURNING cart_id
 
-When using :meth:`.Connection.execute` to invoke an :class:`.Insert` construct,
+When using :meth:`.Connection.execute` to invoke an :class:`_dml.Insert` construct,
 newly generated primary key identifiers, including but not limited to those
 generated using :class:`.Sequence`, are available from the :class:`.CursorResult`
 construct using the :attr:`.CursorResult.inserted_primary_key` attribute.