1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Refs #29850 -- Added exclusion support to window frames.

This commit is contained in:
Sarah Boyce
2023-10-25 17:30:32 +02:00
committed by Mariusz Felisiak
parent 34b411762b
commit e4d012ca05
9 changed files with 310 additions and 5 deletions

View File

@@ -174,6 +174,11 @@ Models
* :class:`~django.db.models.expressions.RowRange` now accepts positive integers
for the ``start`` argument and negative integers for the ``end`` argument.
* The new ``exclusion`` argument of
:class:`~django.db.models.expressions.RowRange` and
:class:`~django.db.models.expressions.ValueRange` allows excluding rows,
groups, and ties from the window frames.
Requests and Responses
~~~~~~~~~~~~~~~~~~~~~~