Re: [PATCHES] Win32 gettimeofday() comment patch

2005-12-17 Thread Bruce Momjian
Patch applied. Thanks. --- Qingqing Zhou wrote: > > Add a note to Win32 gettimeofday() emulation. > > Regards, > Qingqing > > --- > > Index: gettimeofday.c >

Re: [PATCHES] Win32 gettimeofday() comment patch

2005-12-17 Thread Bruce Momjian
Bruce Momjian wrote: > > Patch applied. Thanks. By Alvaro. ;-) > --- > > > Qingqing Zhou wrote: > > > > Add a note to Win32 gettimeofday() emulation. > > > > Regards, > > Qingqing > > > > --- > > > > Index: gettimeof

Re: [PATCHES] TODO Item - Add system view to show free space map

2005-12-17 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it. --- Ma

Re: [PATCHES] Single-Transaction Utility options

2005-12-17 Thread Simon Riggs
On Fri, 2005-12-16 at 15:56 -0500, Tom Lane wrote: > Simon Riggs <[EMAIL PROTECTED]> writes: > > On Fri, 2005-12-16 at 13:59 -0500, Tom Lane wrote: > >> Would -1 work, or just confuse people? > > > That was my preference, I just thought it wouldn't be popular... > > So I'll happily change that. >

Re: [PATCHES] Single-Transaction Utility options

2005-12-17 Thread Peter Eisentraut
Simon Riggs wrote: > Changes as discussed. "singletransaction.patch" attached. I meant to ask, why is this not the default or only behavior? Your patch does not contain a documentation update, and so the user has no information about why to use this option or not. -- Peter Eisentraut http://d

Re: [PATCHES] [BUGS] Solaris cc compiler on amd: PostgreSQL does not have native

2005-12-17 Thread Bruce Momjian
Pierre Girard wrote: > Tom Lane wrote: > > >You'd need to do something about adapting src/backend/port/tas/solaris_i386.s > > > >It's possible that the assembly code would work as-is on amd, in which > >case you'd just need a one-liner change in s_lock.h and maybe some > >adjustment of the templat

Re: [PATCHES] [BUGS] Solaris cc compiler on amd: PostgreSQL does not have native

2005-12-17 Thread Tom Lane
Bruce Momjian writes: > Looking before that, the 64-bit registers are now prefixed with 'r' > instead of 'e', so what I did was to convert all the long/l assembler > instructions to quad/64-bit/q, and rename the registers to use 64-bit > versions. I also modified the function alignment from 4 to 8

Re: [PATCHES] [BUGS] Solaris cc compiler on amd: PostgreSQL does not

2005-12-17 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian writes: > > Looking before that, the 64-bit registers are now prefixed with 'r' > > instead of 'e', so what I did was to convert all the long/l assembler > > instructions to quad/64-bit/q, and rename the registers to use 64-bit > > versions. I also modified the func