pgsql: Accept TEXT and CDATA nodes in XMLTABLE's column_expression.

2018-06-20 Thread Alvaro Herrera
Accept TEXT and CDATA nodes in XMLTABLE's column_expression. Column expressions that match TEXT or CDATA nodes must return the contents of the nodes themselves, not the content of non-existing children (i.e. the empty string). Author: Markus Winand Reported-by: Markus Winand Reviewed-by: Álvaro

pgsql: Accept TEXT and CDATA nodes in XMLTABLE's column_expression.

2018-06-20 Thread Alvaro Herrera
Accept TEXT and CDATA nodes in XMLTABLE's column_expression. Column expressions that match TEXT or CDATA nodes must return the contents of the nodes themselves, not the content of non-existing children (i.e. the empty string). Author: Markus Winand Reported-by: Markus Winand Reviewed-by: Álvaro

pgsql: Add missing include

2018-06-20 Thread Magnus Hagander
Add missing include Per buildfarm Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/3adcad45588bff17b1253f60cf51c440e87df997 Modified Files -- src/bin/pg_verify_checksums/pg_verify_checksums.c | 1 + 1 file changed, 1 insertion(+)

pgsql: Update expected XML output with disabled XML, too

2018-06-20 Thread Alvaro Herrera
Update expected XML output with disabled XML, too Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/04ab840b8458e824a55fca10772ca9db39ab014c Modified Files -- src/test/regress/expected/xml_1.out | 12 ++-- 1 file changed, 6 insertions(+), 6

pgsql: Update expected XML output with disabled XML

2018-06-20 Thread Alvaro Herrera
Update expected XML output with disabled XML Should have been done in previous commit. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/9cd929d36079e30cd43a85dd23e771d25c5f7b14 Modified Files -- src/test/regress/expected/xml_1.out | 12 ++-- 1

pgsql: Support long option for --pgdata in pg_verify_checksums

2018-06-20 Thread Magnus Hagander
Support long option for --pgdata in pg_verify_checksums Author: Daniel Gustafsson Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/741ee9dc819dd90270e66ab9bc254eeb7fda7100 Modified Files -- doc/src/sgml/ref/pg_verify_checksums.sgml | 3 ++-

pgsql: Move pg_verify_checksum docs to Server utils

2018-06-20 Thread Magnus Hagander
Move pg_verify_checksum docs to Server utils Author: Daniel Gustafsson Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/b92ef305c3eebc379af7af52ff03f75c67d39e8f Modified Files -- doc/src/sgml/reference.sgml | 2 +- 1 file changed, 1 insertion(+), 1

pgsql: Document the -D and $PGDATA switch/env for pg_verify_checksums

2018-06-20 Thread Magnus Hagander
Document the -D and $PGDATA switch/env for pg_verify_checksums Author: Daniel Gustafsson Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/d73300a28683fb1723ecda1a3fa767dbe8be6502 Modified Files -- doc/src/sgml/ref/pg_verify_checksums.sgml | 26

pgsql: Fix a number of typos

2018-06-20 Thread Magnus Hagander
Fix a number of typos Author: Liudmila Mantrova Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/d9443d9608a872b1aa8697fa6f40a41573a35f9d Modified Files -- doc/src/sgml/cube.sgml| 2 +- doc/src/sgml/pgtrgm.sgml | 8

pgsql: Fix typo

2018-06-20 Thread Magnus Hagander
Fix typo Reported using the website comment form Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/99ba8d2f8f84fdc2721000dc5727a41e2ca8d944 Modified Files -- doc/src/sgml/dml.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2018-06-20 Thread Magnus Hagander
Fix typo Reported using the website comment form Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/39686cd7f06fb8d3c0762b4d64056ed01f085966 Modified Files -- doc/src/sgml/dml.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2018-06-20 Thread Magnus Hagander
Fix typo Reported using the website comment form Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/af050c07b05fb495ffc194c8dad2f2966070e47b Modified Files -- doc/src/sgml/dml.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2018-06-20 Thread Magnus Hagander
Fix typo Reported using the website comment form Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/74cfbc8efd3f2f34d05e5c28a0299c2a7bc9c56d Modified Files -- doc/src/sgml/dml.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2018-06-20 Thread Magnus Hagander
Fix typo Reported using the website comment form Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/5a7a08ff2c38e3599eeaec06a22e91d3d7fee34b Modified Files -- doc/src/sgml/dml.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Consistently use the term 'partitioned rel' in partprune comment

2018-06-20 Thread Alvaro Herrera
Consistently use the term 'partitioned rel' in partprune comments We were using 'partition rel' in a few places, which is quite confusing. Author: Amit Langote Reviewed-by: David Rowley Reviewed-by: Michaël Paquier Discussion: