[COMMITTERS] pgsql: Make \conninfo print SSL information.

2012-06-14 Thread Robert Haas
Make \conninfo print SSL information. Alastair Turner, per suggestion from Bruce Momjian. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/7582e0be78bc031803e274d428381e0b6077b810 Modified Files -- src/bin/psql/command.c |1 + 1 files changed, 1 insert

[COMMITTERS] pgsql: Remove RELKIND_UNCATALOGED.

2012-06-14 Thread Robert Haas
Remove RELKIND_UNCATALOGED. This may have been important at some point in the past, but it no longer does anything useful. Review by Tom Lane. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/d2c86a1ccd17145eeed2377ff7930e2ccbf5869e Modified Files -- con

[COMMITTERS] pgsql: Remove misplaced sanity check from heap_create().

2012-06-14 Thread Robert Haas
Remove misplaced sanity check from heap_create(). Even when allow_system_table_mods is not set, we allow creation of any type of SQL object in pg_catalog, except for relations. And you can get relations into pg_catalog, too, by initially creating them in some other schema and then moving them wit

[COMMITTERS] pgsql: Add new function log_newpage_buffer.

2012-06-14 Thread Robert Haas
Add new function log_newpage_buffer. When I implemented the ginbuildempty() function as part of implementing unlogged tables, I falsified the note in the header comment for log_newpage. Although we could fix that up by changing the comment, it seems cleaner to add a new function which is specific

[COMMITTERS] pgsql: During transaction cleanup, release locks before deleting files.

2012-06-14 Thread Robert Haas
During transaction cleanup, release locks before deleting files. There's no need to hold onto the locks until the files are needed, and by doing it this way, we reduce the impact on other backends who may be awaiting locks we hold. Noah Misch Branch -- master Details --- http://git.post

[COMMITTERS] pgsql: New SQL functons pg_backup_in_progress() and pg_backup_start_tim

2012-06-14 Thread Robert Haas
New SQL functons pg_backup_in_progress() and pg_backup_start_time() Darold Gilles, reviewed by Gabriele Bartolini and others, rebased by Marco Nenciarini. Stylistic cleanup and OID fixes by me. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/68de499bda40fdf1395b714b

[COMMITTERS] pgsql: Doc corrections for pg_is_in_backup patch.

2012-06-14 Thread Robert Haas
Doc corrections for pg_is_in_backup patch. Fujii Masao Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c616d85f6b6c7bd160c71583e2445b460eee8e3d Modified Files -- doc/src/sgml/func.sgml |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) -- S

[COMMITTERS] pgsql: Improve readability and error messages in pg_backup_start_time.

2012-06-14 Thread Robert Haas
Improve readability and error messages in pg_backup_start_time. Gurjeet Singh, with corrections by me. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8507c2f8564b709bb6a3cc86e9599f6129f45c8e Modified Files -- src/backend/access/transam/xlogfuncs.c | 1

[COMMITTERS] pgsql: Add more message pluralization

2012-06-14 Thread Peter Eisentraut
Add more message pluralization Even though we can't do much about the case with multiple plurals in one sentence, we can fix the other cases. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/d933092e0ab55ed95615977e50963f969ac9793d Modified Files -- src/b

[COMMITTERS] pgsql: Add more message pluralization

2012-06-14 Thread Peter Eisentraut
Add more message pluralization Even though we can't do much about the case with multiple plurals in one sentence, we can fix the other cases. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/ccc65b710ef119237fe5469634cf7589c13b365f Modified Files -

Re: [COMMITTERS] pgsql: New SQL functons pg_backup_in_progress() and pg_backup_start_tim

2012-06-14 Thread Magnus Hagander
On Fri, Jun 15, 2012 at 1:29 AM, Robert Haas wrote: > New SQL functons pg_backup_in_progress() and pg_backup_start_time() > > Darold Gilles, reviewed by Gabriele Bartolini and others, rebased by > Marco Nenciarini.  Stylistic cleanup and OID fixes by me. How well is the term "on-line exclusive ba