pgsql: Docs: concurrent builds of partitioned indexes are not supported

2019-06-05 Thread David Rowley
Docs: concurrent builds of partitioned indexes are not supported Document that CREATE INDEX CONCURRENTLY is not currently supported for indexes on partitioned tables. Discussion: https://postgr.es/m/cakjs1f_cerd2z9l21q8ogld4tgh7yw1z9mathtso13sxvg-...@mail.gmail.com Backpatch-through: 11 Branch

pgsql: Docs: concurrent builds of partitioned indexes are not supported

2019-06-05 Thread David Rowley
Docs: concurrent builds of partitioned indexes are not supported Document that CREATE INDEX CONCURRENTLY is not currently supported for indexes on partitioned tables. Discussion: https://postgr.es/m/cakjs1f_cerd2z9l21q8ogld4tgh7yw1z9mathtso13sxvg-...@mail.gmail.com Backpatch-through: 11 Branch

pgsql: doc: Add links to tables

2019-06-05 Thread Peter Eisentraut
doc: Add links to tables Formal tables should generally have an xref in the text that points to them. Add them here. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/b250898c76f3a04421656f1bd8c5c520de02046d Modified Files -- doc/src/sgml/func.sgml | 7 +

pgsql: Fix confusing NOTICE text in REINDEX CONCURRENTLY

2019-06-05 Thread David Rowley
Fix confusing NOTICE text in REINDEX CONCURRENTLY When performing REINDEX TABLE CONCURRENTLY, if all of the table's indexes could not be reindexed, a NOTICE message claimed that the table had no indexes. This was confusing, so let's change the NOTICE text to something less confusing. In passing,