From: Federico Caselli Date: Mon, 17 Mar 2025 20:33:31 +0000 (+0100) Subject: fix rst target for Insert X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6047ccd72b7ec6e3730845985ec46fa3a7dce07d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix rst target for Insert Change-Id: Iee0b8e90223722c40b25c309c47fd6175680ca0e --- diff --git a/doc/build/changelog/unreleased_20/12363.rst b/doc/build/changelog/unreleased_20/12363.rst index e04e51fe0d..35aa9dbdf0 100644 --- a/doc/build/changelog/unreleased_20/12363.rst +++ b/doc/build/changelog/unreleased_20/12363.rst @@ -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. diff --git a/doc/build/changelog/unreleased_21/12195.rst b/doc/build/changelog/unreleased_21/12195.rst index a36d1bc8a8..e11cf0a2e2 100644 --- a/doc/build/changelog/unreleased_21/12195.rst +++ b/doc/build/changelog/unreleased_21/12195.rst @@ -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