Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Magnus Hagander
On Wed, Jul 25, 2007 at 10:30:29PM +0900, Hiroshi Saito wrote: > >On Wed, Jul 25, 2007 at 02:36:41PM +0900, Hiroshi Saito wrote: > >>Hi Magnus, and Dave. > >> > >>Sorry, I'm a somewhat late reaction... This is the present correspondence. > >>However, VC6 does not support SSAPI. Therefore, the next

Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Magnus Hagander
Hiroshi Saito wrote: >> Ok. So there are actually two ways to go about it: >> 1) Discontinue support for MSVC6 and require MSVC8 >> >> 2) Change it so that MSVC6 can still build libpq, just not with SSPI >> support. This can be done by conditionally enabling ENABLE_SSPI, so it's >> not that hard. >

Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Hiroshi Saito
Hi Magnus and all. From: "Magnus Hagander" Hiroshi Saito wrote: Ok. So there are actually two ways to go about it: 1) Discontinue support for MSVC6 and require MSVC8 2) Change it so that MSVC6 can still build libpq, just not with SSPI support. This can be done by conditionally enabling ENABL

Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Hiroshi Saito
Hi. From: "Magnus Hagander" On Wed, Jul 25, 2007 at 10:30:29PM +0900, Hiroshi Saito wrote: >On Wed, Jul 25, 2007 at 02:36:41PM +0900, Hiroshi Saito wrote: >>Hi Magnus, and Dave. >> >>Sorry, I'm a somewhat late reaction... This is the present correspondence. >>However, VC6 does not support S

Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Hiroshi Saito
Hi. Some test situations. As for PostgreSQL CVS HEAD(8.3beta). libpq is created by MinGW (gcc). As for psqlODBC CVS HEAD(08.02.0402) (linked SECUR32.dll) 1. VC6(psqlodbc.dsp) The run test of compile and a part is through in VC6. 2. VC8(psqlodbc.vcproj) The run test of compile and a part is t

[PATCHES] allow CSV quote in NULL

2007-07-26 Thread Stephen Frost
Greetings, Please find attached a minor patch to remove the constraints that a user can't include the delimiter or quote characters in a 'NULL AS' string when importing CSV files. This allows a user to explicitly request that NULL conversion happen on fields which are quoted. As the qu

Re: [PATCHES] patch win32.mak of libpq

2007-07-26 Thread Hiroshi Saito
Oops, An expressional mistake. As for PostgreSQL CVS HEAD(8.3beta). libpq is created by MinGW (gcc). As for psqlODBC CVS HEAD(08.02.0402) (linked SECUR32.dll) SECUR32.dll link is libpq.dll. SECUR32.dll does not link to psqlodbc35w.dll Regards, Hiroshi Saito ---(end

Re: [PATCHES] allow CSV quote in NULL

2007-07-26 Thread Tom Lane
Stephen Frost <[EMAIL PROTECTED]> writes: > Please find attached a minor patch to remove the constraints that a > user can't include the delimiter or quote characters in a 'NULL AS' > string when importing CSV files. This can't really be sane can it? regards, tom lan

Re: [PATCHES] allow CSV quote in NULL

2007-07-26 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > Please find attached a minor patch to remove the constraints that a > > user can't include the delimiter or quote characters in a 'NULL AS' > > string when importing CSV files. > > This can't really be sane