[COMMITTERS] pgsql: Fix bug in WAL_DEBUG.

2014-06-23 Thread Heikki Linnakangas
Fix bug in WAL_DEBUG. The record header was not copied correctly to the buffer that was passed to the rm_desc function. Broken by my rm_desc signature refactoring patch. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/85ba0748ed5aa069643887af84fc28c380b1e815 Modifie

[COMMITTERS] pgsql: Add missing closing parenthesis into max_replication_slots doc.

2014-06-23 Thread Fujii Masao
Add missing closing parenthesis into max_replication_slots doc. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/394e05996fbb0621cf51c9d99891ca99b0eb2ff2 Modified Files -- doc/src/sgml/config.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -

[COMMITTERS] pgsql: Add missing closing parenthesis into max_replication_slots doc.

2014-06-23 Thread Fujii Masao
Add missing closing parenthesis into max_replication_slots doc. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c6d0df9492b12ce657de8512a93dd473f3eff5d9 Modified Files -- doc/src/sgml/config.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion

[COMMITTERS] pgsql: Fix typo in replication slot function doc.

2014-06-23 Thread Fujii Masao
Fix typo in replication slot function doc. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f8ad8bd47306d4c34ab8f7cc6f38225b12f18a3c Modified Files -- doc/src/sgml/func.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-commi

[COMMITTERS] pgsql: Fix typo in replication slot function doc.

2014-06-23 Thread Fujii Masao
Fix typo in replication slot function doc. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/e9b182404b67eef9a263c3d07b89cb60b26bed7b Modified Files -- doc/src/sgml/func.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsq

Re: [COMMITTERS] pgsql: Do all-visible handling in lazy_vacuum_page() outside its critic

2014-06-23 Thread Jeff Davis
On Fri, 2014-06-20 at 09:10 +, Andres Freund wrote: > To fix, simply move all the all-visible handling outside the critical > section. Doing so means that the PD_ALL_VISIBLE on the page won't be > included in the full page image of the HEAP2_CLEAN record anymore. But > that's fine, the flag wil

[COMMITTERS] pgsql: Improve tab-completion of DROP and ALTER ENABLE/DISABLE on trigg

2014-06-23 Thread Heikki Linnakangas
Improve tab-completion of DROP and ALTER ENABLE/DISABLE on triggers and rules. At "DROP RULE/TRIGGER triggername ON ...", tab-complete tables that have a rule/trigger with that name. At "ALTER TABLE tablename ENABLE/DISABLE TRIGGER/RULE ...", tab-complete to rules/triggers on that table. Previous

Re: [COMMITTERS] pgsql: Do all-visible handling in lazy_vacuum_page() outside its critic

2014-06-23 Thread Andres Freund
Hi, On 2014-06-23 13:00:11 -0700, Jeff Davis wrote: > On Fri, 2014-06-20 at 09:10 +, Andres Freund wrote: > > To fix, simply move all the all-visible handling outside the critical > > section. Doing so means that the PD_ALL_VISIBLE on the page won't be > > included in the full page image of th

[COMMITTERS] pgsql: Check for interrupts during tuple-insertion loops.

2014-06-23 Thread Robert Haas
Check for interrupts during tuple-insertion loops. Normally, this won't matter too much; but if I/O is really slow, for example because the system is overloaded, we might write many pages before checking for interrupts. A single toast insertion might write up to 1GB of data, and a multi-insert co