Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ea7Gp-00017Q-UI for pgsql-docs@arkaria.postgresql.org; Fri, 12 Jan 2018 21:53:52 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ea7Gp-0004WY-Et for pgsql-docs@arkaria.postgresql.org; Fri, 12 Jan 2018 21:53:51 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1ea7Gp-0004W4-6h for pgsql-docs@lists.postgresql.org; Fri, 12 Jan 2018 21:53:51 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1ea7Gm-0006Ye-IZ for pgsql-docs@postgresql.org; Fri, 12 Jan 2018 21:53:50 +0000 Received: from bruce by momjian.us with local (Exim 4.84_2) (envelope-from ) id 1ea7Gl-00009N-AG; Fri, 12 Jan 2018 16:53:47 -0500 Date: Fri, 12 Jan 2018 16:53:47 -0500 From: Bruce Momjian To: steven.winfield@cantabcapital.com Cc: pgsql-docs@postgresql.org Subject: Re: [DOCS] No reference to postgres_fdw in FTS docs Message-ID: <20180112215347.GA29170@momjian.us> References: <20171031105039.17183.850@wrigleys.postgresql.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline In-Reply-To: <20171031105039.17183.850@wrigleys.postgresql.org> User-Agent: Mutt/1.5.23 (2014-03-12) List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Precedence: bulk --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Oct 31, 2017 at 10:50:39AM +0000, steven.winfield@cantabcapital.com wrote: > The following documentation comment has been logged on the website: > > Page: https://www.postgresql.org/docs/10/static/textsearch-indexes.html > Description: > > https://www.postgresql.org/docs/current/static/textsearch-indexes.html > > The last paragraph mentions the dblink module, but surely postgres_fdw > deserves a mention here too - especially with its increasing ability to push > more of the query onto the foreign servers. > > Also, I think it would be worth mentioning elsewhere in the documentation > (e.g. https://www.postgresql.org/docs/10/static/indexes-types.html) the > impact that maintenance_work_mem has on the creation time for different > index types - currently I can't find this anywhere else except on this FTS > page. I have applied the attached doc patch which will appear in PG 11. Thanks. -- Bruce Momjian http://momjian.us EnterpriseDB http://enterprisedb.com + As you are, so once was I. As I am, so you will be. + + Ancient Roman grave inscription + --3MwIy2ne0vdjdPXF Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename=diff diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml new file mode 100644 index 4dc52ec..1a2f040 *** a/doc/src/sgml/textsearch.sgml --- b/doc/src/sgml/textsearch.sgml *************** SELECT plainto_tsquery('supernovae stars *** 3614,3621 **** allows the implementation of very fast searches with online update. Partitioning can be done at the database level using table inheritance, or by distributing documents over ! servers and collecting search results using the ! module. The latter is possible because ranking functions use only local information. --- 3614,3622 ---- allows the implementation of very fast searches with online update. Partitioning can be done at the database level using table inheritance, or by distributing documents over ! servers and collecting external search results, e.g. via Foreign Data access. ! The latter is possible because ranking functions use only local information. --3MwIy2ne0vdjdPXF--