Re: [PATCHES] xpath_array with namespaces support

2007-03-18 Thread Nikolay Samokhvalov
On 3/5/07, Nikolay Samokhvalov [EMAIL PROTECTED] wrote: On 3/4/07, Nikolay Samokhvalov [EMAIL PROTECTED] wrote: I'll fix these issues and extend the patch with resgression tests and docs for xpath_array(). I'll resubmit it very soon. Here is a new version of the patch. I didn't change any

Re: [PATCHES] Code-Cleanup: char* - const char*

2007-03-18 Thread Tom Lane
Neil Conway [EMAIL PROTECTED] writes: I also don't see the value in modifying the regexp code, as that is just an import of Henry Spencer's regexp package. The same objection applies to most of the proposed changes in /src/port/ since those are generally imports from BSD libc code. I don't

Re: [PATCHES] xml2 contrib patch supporting default XML namespaces

2007-03-18 Thread Mike Rylander
On 3/6/07, Mike Rylander [EMAIL PROTECTED] wrote: On 3/6/07, Peter Eisentraut [EMAIL PROTECTED] wrote: Mike Rylander wrote: The patch adds support for default XML namespaces in xml2 by providing a mechanism for supplying a prefix to a named namespace URI. How does it support multiple

Re: [PATCHES] ecpg threading vs win32

2007-03-18 Thread ITAGAKI Takahiro
Magnus Hagander [EMAIL PROTECTED] wrote: This patch replaces the pthreads code in ecpg with native win32 threads, in order to make it threadsafe. The idea is not to have to download the non-standard pthreads library on windows. Does it seem like it should be doing the right thing? Does

[PATCHES] vacuumdb cancel handler

2007-03-18 Thread ITAGAKI Takahiro
Hello, I found vacuumdb, reindexdb and clusterdb don't have cancel handlers. The server continues to process commands when we press Ctrl+C on those client programs, though they exit. Therefore, psql -c VACUUM and Ctrl+C works well, but vacuumdb and Ctrl+C does not. I borrowed the cancel handler