From: Nick Douma Date: Thu, 18 Jun 2020 11:52:13 +0000 (+0200) Subject: Clarify what index to skip X-Git-Tag: dnsdist-1.5.0-rc4~15^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9240%2Fhead;p=thirdparty%2Fpdns.git Clarify what index to skip --- diff --git a/docs/backends/generic-postgresql.rst b/docs/backends/generic-postgresql.rst index 15e0b76b94..96cb1723ad 100644 --- a/docs/backends/generic-postgresql.rst +++ b/docs/backends/generic-postgresql.rst @@ -152,7 +152,11 @@ Given the normal pgsql schema, change the following: ); -3. Do not add the recordorder INDEX to the records table, the text_pattern_ops operator class is not supported. +3. Do **not** add the following index to the records table, the text_pattern_ops operator class is not supported: + +.. code-block:: SQL + + CREATE INDEX recordorder ON records (domain_id, ordername text_pattern_ops); Configuration changes