[PATCHES] COMMENT ON mega patch

2003-11-18 Thread Christopher Kings-Lynne
This patch does the following: 1. Comment on 5 new objects: COMMENT ON CONVERSION my_conv IS 'Conversion to Unicode'; COMMENT ON LANGUAGE plpython IS 'Python support for stored procedures'; COMMENT ON OPERATOR CLASS int4ops USING btree IS '4 byte integer operators for btrees'; COMMENT ON LARGE O

Re: [PATCHES] Make pg_dump dump conversions

2003-11-18 Thread Christopher Kings-Lynne
Hi Bruce, Don't apply this patch - I'm incorporating it into my COMMENT ON mega patch. That way I can get conversion dumping with comments working in one go. Chris Christopher Kings-Lynne wrote: Just noticed a bug in the previous version of the patch. Would fail against pre-7.3 postgres.

[PATCHES] 7.4 shared memory error on 64-bit SPARC/Solaris 5.8

2003-11-18 Thread Thomas Baden
Hi there. My install was failing the regression tests due to a shared memory error. I'm running Solaris 5.8, YASSP, and I am using the Sun Forte 7 compiler suite generating 64-bit code. I did some digging around, and it turns out that the IpcMemoryKey is a 64-bit number. The source code uses ui

Re: [PATCHES] SIGPIPE handling

2003-11-18 Thread Bruce Momjian
Attached is my idea for implementing safe SIGPIPE in threaded apps. The code has the same libpq behavior if not compiled using --enable-thread-safety. If compiled with that option, an app wanting to define its own SIGPIPE handler has to do so before connecting to a database. On first connection

Re: [PATCHES] Install pg_config_manual.h

2003-11-18 Thread Reinhard Max
On Tue, 18 Nov 2003 at 12:07, Reinhard Max wrote: > I just found, that pg_config_manual.h is included by internal/c.h, > but not being installed by default. The attached patch fixes this. port.h was missing as well. Updated patch attached. cu Reinhard --- src/include/Makefile +++ src/inc

[PATCHES] Install pg_config_manual.h

2003-11-18 Thread Reinhard Max
Hi, I just found, that pg_config_manual.h is included by internal/c.h, but not being installed by default. The attached patch fixes this. cu Reinhard --- src/include/Makefile +++ src/include/Makefile @@ -24,8 +24,9 @@ # These headers are needed by the public headers of the interfaces.