[COMMITTERS] pgsql: Remove IRIX port.

2013-10-18 Thread Robert Haas
Remove IRIX port. Development of IRIX has been discontinued, and support is scheduled to end in December of 2013. Therefore, there will be no supported versions of this operating system by the time PostgreSQL 9.4 is released. Furthermore, we have no maintainer for this platform. Branch -- m

[COMMITTERS] pgsql: Add libpgport to isolationtester on MSVC

2013-10-18 Thread Peter Eisentraut
Add libpgport to isolationtester on MSVC From: Asif Naeem Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/595a6a035008cfa76faa2f284e91704f18673d13 Modified Files -- src/tools/msvc/Mkvcbuild.pm |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --

[COMMITTERS] pgsql: Switch order of libpgport and libpgcommon in MSVC build as well

2013-10-18 Thread Peter Eisentraut
Switch order of libpgport and libpgcommon in MSVC build as well Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/3c093b4ad267bbba1bc1e403719dddb881d2696e Modified Files -- src/tools/msvc/Mkvcbuild.pm | 14 +++--- 1 file changed, 7 insertions(+), 7

[COMMITTERS] pgsql: Fix for lack of va_copy() on certain Windows versions

2013-10-18 Thread Peter Eisentraut
Fix for lack of va_copy() on certain Windows versions Based-on-patch-by: David Rowley Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c2316dcda1cd057d7d4a56e3a51e3f8f0527e906 Modified Files -- src/include/port/win32.h |9 + 1 file changed, 9

[COMMITTERS] pgsql: Provide a reliable mechanism for terminating a background worker

2013-10-18 Thread Robert Haas
Provide a reliable mechanism for terminating a background worker. Although previously-introduced APIs allow the process that registers a background worker to obtain the worker's PID, there's no way to prevent a worker that is not currently running from being restarted. This patch introduces a new

[COMMITTERS] pgsql: Allow only some columns of a view to be auto-updateable.

2013-10-18 Thread Robert Haas
Allow only some columns of a view to be auto-updateable. Previously, unless all columns were auto-updateable, we wouldn't inserts, updates, or deletes, or at least not without a rule or trigger; now, we'll allow inserts and updates that target only the auto-updateable columns, and deletes even if

[COMMITTERS] pgsql: Move pgfnames() from libpgport to libpgcommon

2013-10-18 Thread Peter Eisentraut
Move pgfnames() from libpgport to libpgcommon It requires pstrdup() from libpgcommon. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/ba7c5975adea74c6f17bdb0e0427ad85962092a2 Modified Files -- src/bin/initdb/nls.mk |2 +- src/common/Makefile