diff --git a/bi_view_editor/README.rst b/bi_view_editor/README.rst index f9522260..1e7f2895 100644 --- a/bi_view_editor/README.rst +++ b/bi_view_editor/README.rst @@ -94,6 +94,9 @@ A more advanced UI is also available under the "Details" tab. It provides extra possibilities for more advanced users, like to use LEFT JOIN instead of the default INNER JOIN. +It also possible to improve the IDs generation for new views by adding an `Over Condition` in the "SQL" tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when filtering the generated views. + Known issues / Roadmap ====================== diff --git a/bi_view_editor/static/description/index.html b/bi_view_editor/static/description/index.html index 3490a590..de530802 100644 --- a/bi_view_editor/static/description/index.html +++ b/bi_view_editor/static/description/index.html @@ -441,6 +441,8 @@ the menu entry.

A more advanced UI is also available under the “Details” tab. It provides extra possibilities for more advanced users, like to use LEFT JOIN instead of the default INNER JOIN.

+

It also possible to improve the IDs generation for new views by adding an Over Condition in the “SQL” tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when filtering the generated views.

Known issues / Roadmap