diff options
| author | Tom Forbes <tom@tomforb.es> | 2018-07-26 00:45:32 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-07-30 19:54:56 -0400 |
| commit | 4198445afcba94eb7a25b50c96ec6c2694ed2192 (patch) | |
| tree | 3e5464d68a4cacdcd20dbd7e3383f6e3c13d1a2d /docs | |
| parent | 06a11ef6ecf324db0a1530b8cca727883698f442 (diff) | |
Refs #29548 -- Fixed failing window tests on MariaDB 10.3.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/models/database-functions.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/ref/models/database-functions.txt b/docs/ref/models/database-functions.txt index be57691480..77e6a1beb4 100644 --- a/docs/ref/models/database-functions.txt +++ b/docs/ref/models/database-functions.txt @@ -1514,6 +1514,11 @@ Calculates the value offset by ``offset``, and if no row exists there, returns ``default`` must have the same type as the ``expression``, however, this is only validated by the database and not in Python. +.. admonition:: MariaDB and ``default`` + + MariaDB `doesn't support <https://jira.mariadb.org/browse/MDEV-12981>`_ + the ``default`` parameter. + ``LastValue`` ------------- @@ -1533,6 +1538,11 @@ Calculates the leading value in a given :ref:`frame <window-frames>`. Both ``default`` must have the same type as the ``expression``, however, this is only validated by the database and not in Python. +.. admonition:: MariaDB and ``default`` + + MariaDB `doesn't support <https://jira.mariadb.org/browse/MDEV-12981>`_ + the ``default`` parameter. + ``NthValue`` ------------ |
