]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
doc edits
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 16 Apr 2026 20:02:37 +0000 (16:02 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 16 Apr 2026 20:02:37 +0000 (16:02 -0400)
Change-Id: I2a30ceba5d27eba858396ab98ccb25e62d3dc3dc

doc/build/changelog/unreleased_21/11526.rst
doc/build/changelog/unreleased_21/11671.rst
doc/build/changelog/unreleased_21/12869.rst
lib/sqlalchemy/sql/_elements_constructors.py

index 61930d0e34426845e14b1c478ec559919a5515ec..bbff86fc72f9f62498c61e05fd32981fcc993bcd 100644 (file)
@@ -2,7 +2,7 @@
     :tags: bug, sql
     :tickets: 11526
 
-    A warning is emitted when using the standalone :func:`_.sql.distinct`
+    A warning is emitted when using the standalone :func:`_sql.distinct`
     function in a :func:`_sql.select` columns list outside of an aggregate
     function; this function is not intended as a replacement for the use of
     :meth:`.Select.distinct`. Pull request courtesy bekapono.
index a9ab9ac731c07e9a7941be0fd91f98534810b866..cf3101f38575ac7968533df13f1090aa73821252 100644 (file)
@@ -2,8 +2,7 @@
     :tags: usecase, sql
     :tickets: 11671
 
-    Add the `exclude` parameter to the `Over` construct and all `.over()`
-    methods, enabling SQL standard frame exclusion clauses
-    `EXCLUDE CURRENT ROW`, `EXCLUDE GROUP`, `EXCLUDE TIES`,
-    `EXCLUDE NO OTHERS` in window functions.
-    Pull request courtesy of Varun Chawla.
\ No newline at end of file
+    Added new parameter :paramref:`_sql.over.exclude` to :func:`_sql.over` and
+    related methods, enabling SQL standard frame exclusion clauses ``EXCLUDE
+    CURRENT ROW``, ``EXCLUDE GROUP``, ``EXCLUDE TIES``, ``EXCLUDE NO OTHERS``
+    in window functions. Pull request courtesy of Varun Chawla.
index 173ec53d490390e7c77dc33d517bd9aa3688e801..6c7858f436fa3bd8f80a8f1aec633a9afc98009d 100644 (file)
@@ -7,5 +7,5 @@
 
     .. seealso::
 
-        :ref:`change_12869`
+        :ref:`mssql_python` - Documentation for the mssql-python dialect
 
index 5d596525d11f68950ba4663924bf104e57ffd2ab..4816d172b94b527c5e48658d1828bb81a366a8fa 100644 (file)
@@ -1725,11 +1725,12 @@ def over(
 
      .. versionadded:: 2.0.40
 
-    :param exclude: optional string for the frame exclusion clause.
-     This is a string value which can be one of ``CURRENT ROW``,
-     ``GROUP``, ``TIES``, or ``NO OTHERS`` and will render an
-     EXCLUDE clause within the window frame specification.  Requires
-     that one of ``rows``, ``range_``, or ``groups`` is also specified.
+    :param exclude: optional string for the frame exclusion clause. This is a
+     string value which can be one of ``CURRENT ROW``, ``GROUP``, ``TIES``, or
+     ``NO OTHERS`` and will render an EXCLUDE clause within the window frame
+     specification.  Requires that one of :paramref:`_sql.over.rows`,
+     :paramref:`_sql.over.range_`, or :paramref:`_sql.over.groups` is also
+     specified.
 
      .. versionadded:: 2.1