]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix rst target for Insert
authorFederico Caselli <cfederico87@gmail.com>
Mon, 17 Mar 2025 20:33:31 +0000 (21:33 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Mon, 17 Mar 2025 20:33:31 +0000 (21:33 +0100)
Change-Id: Iee0b8e90223722c40b25c309c47fd6175680ca0e

doc/build/changelog/unreleased_20/12363.rst
doc/build/changelog/unreleased_21/12195.rst

index e04e51fe0dea54125a9f9e2640820f9cf3a84ab0..35aa9dbdf0dcfa02110bd0fb1dd21f1a22bdd358 100644 (file)
@@ -3,7 +3,7 @@
     :tickets: 12363
 
     Fixed issue in :class:`.CTE` constructs involving multiple DDL
-    :class:`.Insert` statements with multiple VALUES parameter sets where the
+    :class:`_sql.Insert` statements with multiple VALUES parameter sets where the
     bound parameter names generated for these parameter sets would conflict,
     generating a compile time error.
 
index a36d1bc8a87f0d6525d80ee2883b7c8a6ed76f00..e11cf0a2e251e1de80d43e353f79851767d477dd 100644 (file)
@@ -5,7 +5,7 @@
     Added the ability to create custom SQL constructs that can define new
     clauses within SELECT, INSERT, UPDATE, and DELETE statements without
     needing to modify the construction or compilation code of of
-    :class:`.Select`, :class:`.Insert`, :class:`.Update`, or :class:`.Delete`
+    :class:`.Select`, :class:`_sql.Insert`, :class:`.Update`, or :class:`.Delete`
     directly.  Support for testing these constructs, including caching support,
     is present along with an example test suite.  The use case for these
     constructs is expected to be third party dialects for analytical SQL