[COMMITTERS] pgsql: Fix message typo.

2013-03-06 Thread Andrew Dunstan
Fix message typo. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cd340ca89a06d6386f1af3b519db6f77c21ac84e Modified Files -- src/tools/msvc/vcregress.pl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via pgsql-committers mailing lis

[COMMITTERS] pgsql: Fix message typo.

2013-03-06 Thread Andrew Dunstan
Fix message typo. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c52ba36bd78a6e67d0ac30de8c71fb256cbaf026 Modified Files -- src/tools/msvc/vcregress.pl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via pgsql-committers mail

[COMMITTERS] pgsql: Fix broken pg_dump for 9.0 and 9.1 caused by the MV patch.

2013-03-06 Thread Kevin Grittner
Fix broken pg_dump for 9.0 and 9.1 caused by the MV patch. Per report and suggestion from Bernd Helmle Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cfa3df3de14b437d5f1691d1636a57c9ec595f51 Modified Files -- src/bin/pg_dump/pg_dump.c | 38 +++

[COMMITTERS] pgsql: Add docs for pg_matviews, which were missed in the initial MV co

2013-03-06 Thread Kevin Grittner
Add docs for pg_matviews, which were missed in the initial MV commit. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5141603ebd162a50c36583f1a80eceadc94ef25e Modified Files -- doc/src/sgml/catalogs.sgml | 85 +++-

[COMMITTERS] pgsql: WAL-log the extension of a new empty MV heap which is being popu

2013-03-06 Thread Kevin Grittner
WAL-log the extension of a new empty MV heap which is being populated. This page with no tuples is used to distinguish an MV containing a zero-row resultset of its backing query from an MV which has not been populated by its backing query. Unless WAL-logged, recovery and hot standby don't work co

[COMMITTERS] pgsql: Fix missing #include in commands/matview.h.

2013-03-06 Thread Tom Lane
Fix missing #include in commands/matview.h. It needs parsenodes.h to be compilable regardless of previous headers. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/e11cb8ba2c9134c9f16253213f2f0cf089c5838e Modified Files -- src/include/commands/matview.h |

[COMMITTERS] pgsql: Adjust nls.mk for split out of wait_error.c

2013-03-06 Thread Peter Eisentraut
Adjust nls.mk for split out of wait_error.c Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f11af2bcab36b51a7e41df7986d6f030459d7d09 Modified Files -- src/bin/initdb/nls.mk |2 +- src/bin/psql/nls.mk |2 +- 2 files changed, 2 insertions(+), 2 dele

[COMMITTERS] pgsql: Code beautification for object-access hook machinery.

2013-03-06 Thread Robert Haas
Code beautification for object-access hook machinery. KaiGai Kohei Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f90cc269823ba5282341a197c7387f5ada6703a6 Modified Files -- src/backend/catalog/Makefile |3 +- src/backend/catalog/depende

[COMMITTERS] pgsql: Add fe_memutils.c to nls.mk where used

2013-03-06 Thread Peter Eisentraut
Add fe_memutils.c to nls.mk where used Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/97951139164055d6bae5aae7ea058c28e1462253 Modified Files -- src/bin/initdb/nls.mk|2 +- src/bin/pg_basebackup/nls.mk |2 +- src/bin/pg_ctl/nls.mk|

[COMMITTERS] pgsql: Arrange to cache FdwRoutine structs in foreign tables' relcache

2013-03-06 Thread Tom Lane
Arrange to cache FdwRoutine structs in foreign tables' relcache entries. This saves several catalog lookups per reference. It's not all that exciting right now, because we'd managed to minimize the number of places that need to fetch the data; but the upcoming writable-foreign-tables patch needs