pgsql: Improve description of pg_attrdef in documentation

2018-10-29 Thread Michael Paquier
Improve description of pg_attrdef in documentation The reference to pg_attribute is switched to a link, which is more useful for the html documentation. The conditions under which a default value is defined for a given column are made more general. Author: Daniel Gustafsson Reviewed-by: Tom Lane

pgsql: pg_restore: Augment documentation for -N option

2018-10-29 Thread Peter Eisentraut
pg_restore: Augment documentation for -N option This was forgotten when the option was added. Author: Michael Banck Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/fef9482dacfef6fadebcc8ce2da57b850a32e8fd Modified Files -- src/bin/pg_dump/pg_re

pgsql: pg_restore: Augment documentation for -N option

2018-10-29 Thread Peter Eisentraut
pg_restore: Augment documentation for -N option This was forgotten when the option was added. Author: Michael Banck Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/2fe42baf7c1ad96b5f9eb898161e258315298351 Modified Files -- src/bin/pg_dump/pg_restore.c

pgsql: pg_restore: Augment documentation for -N option

2018-10-29 Thread Peter Eisentraut
pg_restore: Augment documentation for -N option This was forgotten when the option was added. Author: Michael Banck Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/29cdf02e3fb7afb3f26a81d95bf74d846e8a60b8 Modified Files -- src/bin/pg_dump/pg_re

pgsql: Exclude temporary directories from pgindent

2018-10-29 Thread Peter Eisentraut
Exclude temporary directories from pgindent Exclude tmp_check and tmp_install from pgindent. In a fully-built tree, pgindent would spend a lot of time digging through these directories and ends up re-indenting installed header files. Branch -- master Details --- https://git.postgresql.o

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/fe42d4be7b09267f77bccc0968933e45ee5beaed Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/56c0484b2ef10cacdfc3f35e017e8049ecc0800b Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+), 1 delet

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL9_3_STABLE Details --- https://git.postgresql.org/pg/commitdiff/bd3fc725b235e587864376ad8dfa60100eecf45c Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/ba5644d996f5a53306049e0004ecb07a9f74fb79 Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/e873886b83e1ef5787dc0e4cd9588a703b4324a0 Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/b5f1717ef54868d34e9f588aa20adc3e2ea72c8b Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Fix missing whitespace in pg_dump ref page

2018-10-29 Thread Magnus Hagander
Fix missing whitespace in pg_dump ref page Author: Daniel Gustafsson Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/679ad2f969772297e4725715ea24e5d38526590d Modified Files -- doc/src/sgml/ref/pg_dump.sgml | 2 +- 1 file changed, 1 insertion(+),

pgsql: Add pg_partition_tree to display information about partitions

2018-10-29 Thread Michael Paquier
Add pg_partition_tree to display information about partitions This new function is useful to display a full tree of partitions with a partitioned table given in output, and avoids the need of any complex WITH RECURSIVE query when looking at partition trees which are deep multiple levels. It retur

pgsql: Consolidate cross-option checks in pg_restore

2018-10-29 Thread Michael Paquier
Consolidate cross-option checks in pg_restore This moves one check for conflicting options from the archive restore code to the main function where other similar checks are performed. Also reword the error message to be consistent with other messages. The only option combination impacted is --cre