[COMMITTERS] pgsql: pg_dump: Separate table and sequence data object types

2016-11-13 Thread Peter Eisentraut
pg_dump: Separate table and sequence data object types Instead of handling both sequence data and table data internally as "table data", handle sequences separately under a "sequence set" type. We already handled materialized view data differently, so it makes the code somewhat cleaner to handle e

[COMMITTERS] pgsql: pg_upgrade: Upgrade sequence data via pg_dump

2016-11-13 Thread Peter Eisentraut
pg_upgrade: Upgrade sequence data via pg_dump Previously, pg_upgrade migrated sequence data like tables by copying the on-disk file. This does not allow any changes in the on-disk format for sequences. It's simpler to just have pg_dump set the new sequence values as it normally does. To do that

[COMMITTERS] pgsql: Doc: remove obsolete example.

2016-11-13 Thread Tom Lane
Doc: remove obsolete example. The documentation for ts_headline() recommends using a sub-select to avoid extra evaluations of ts_headline() in a query with ORDER BY+LIMIT. Since commit 9118d03a8 this contortionism is unnecessary, so remove the recommendation. Noted by Oleg Bartunov. Discussion:

[COMMITTERS] pgsql: Doc: remove obsolete example.

2016-11-13 Thread Tom Lane
Doc: remove obsolete example. The documentation for ts_headline() recommends using a sub-select to avoid extra evaluations of ts_headline() in a query with ORDER BY+LIMIT. Since commit 9118d03a8 this contortionism is unnecessary, so remove the recommendation. Noted by Oleg Bartunov. Discussion:

[COMMITTERS] pgsql: pg_stat_statements: Add .gitignore file for tests

2016-11-13 Thread Peter Eisentraut
pg_stat_statements: Add .gitignore file for tests Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/b7292a8670289d3c026932404dee194648661e35 Modified Files -- contrib/pg_stat_statements/.gitignore | 4 1 file changed, 4 insertions(+) -- Sent via pgsq