This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch merge-3.4.3 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 70cd72a0328d2c5dd98de35cf81e3da68879b32b Author: Jamie Bliss <[email protected]> AuthorDate: Sat Feb 15 12:06:04 2025 -0500 Update index type to include nouveau --- src/docs/src/api/database/find.rst | 7 +++++-- src/docs/src/ddocs/mango.rst | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/docs/src/api/database/find.rst b/src/docs/src/api/database/find.rst index 9d39f50fe..7e5773622 100644 --- a/src/docs/src/api/database/find.rst +++ b/src/docs/src/api/database/find.rst @@ -347,8 +347,11 @@ built using MapReduce Views. indexes in the same document (similar to views). *Optional* :query string name: Name of the index. If no name is provided, a name will be generated automatically. *Optional* - :query string type: Can be ``"json"``, ``"text"`` (for clouseau) or - ``"nouveau"``. Defaults to ``"json"``. *Optional* + :query string type: Can be ``"json"``, ``"text"`` (for clouseau), or + ``"nouveau"``. Defaults to ``"json"``. + Text and Nouveau indexes are related to those + features, and are only available if they're installed. + Geospatial indexes will be supported in the future. *Optional* :query boolean partitioned: Determines whether a JSON index is partitioned or global. The default value of ``partitioned`` is the ``partitioned`` property of the database. To create a global index on a diff --git a/src/docs/src/ddocs/mango.rst b/src/docs/src/ddocs/mango.rst index 7c54ff94b..eb894aaaa 100644 --- a/src/docs/src/ddocs/mango.rst +++ b/src/docs/src/ddocs/mango.rst @@ -700,8 +700,9 @@ They primarily consist of a list of fields to index, but can also contain a :ref .. note:: - Mango indexes have a type, currently ``json`` or ``text``. This document - covers ``json`` indexes. ``text`` indexes are handled by 3rd-party software. + Mango indexes have a type, currently ``json``, ``text``, ``nouveau``. This + document covers ``json`` indexes. ``text`` and ``nouveau`` are related to + the :ref:`ddoc/search` and :ref:`ddoc/nouveau` systems, respectively. .. _find/partial_indexes:
