Re: [PATCHES] ecpg USE_INTEGER_DATETIMES missing in msvc build

2007-05-27 Thread Michael Meskes
On Fri, May 25, 2007 at 02:40:28PM +0200, Joachim Wieland wrote: > The appended patch makes the msvc setting "integer_datetimes" propagate to > ecpg_config.h as well. Applied. Michael -- Michael Meskes Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org) ICQ: 179140304, AI

Re: [PATCHES] cluster test

2007-05-27 Thread Andrew Dunstan
Tom Lane wrote: Joachim Wieland <[EMAIL PROTECTED]> writes: As said before, it only happens with "make installcheck", not "make check". Curious. I'm not sure if the buildfarm tries to isolate the installation against its locale environment --- can you check the locale used by the in

Re: [PATCHES] Maintaining cluster order on insert

2007-05-27 Thread Jim C. Nasby
On Mon, May 21, 2007 at 10:48:59AM +0100, Heikki Linnakangas wrote: > >Another problem that I noticed with the patch is that it disregards > >the fillfactor while inserting the tuples. ISTM that this is a correct > >behavior when a tuple is being inserted in the block to preserve cluster > >orderin

[PATCHES] Interval input: usec, msec

2007-05-27 Thread Neil Conway
neilc=# select '1 day 1 millisecond'::interval; interval 1 day 00:00:00.001 (1 row) neilc=# select '1 millisecond'::interval; ERROR: invalid input syntax for type interval: "1 millisecond" neilc=# select '0.001 seconds'::interval; interval -- 00