Refs #29548 -- Fixed failing window tests on MariaDB 10.3.

This commit is contained in:
Tom Forbes 2018-07-26 00:45:32 +01:00 committed by Tim Graham
parent 06a11ef6ec
commit 4198445afc
5 changed files with 58 additions and 27 deletions

View file

@ -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``
------------