Re: [PATCHES] default resource limits

2005-12-24 Thread Peter Eisentraut
Am Samstag, 24. Dezember 2005 00:20 schrieb Andrew Dunstan: The rationale is one connection per apache thread (which on Windows defaults to 400). If people think this is too many I could live with winding it back a bit - the defaults number of apache workers on Unix is 250, IIRC. It's 150. I

Re: [PATCHES] default resource limits

2005-12-24 Thread Robert Treat
On Saturday 24 December 2005 06:22, Peter Eisentraut wrote: Am Samstag, 24. Dezember 2005 00:20 schrieb Andrew Dunstan: The rationale is one connection per apache thread (which on Windows defaults to 400). If people think this is too many I could live with winding it back a bit - the

[PATCHES] Improve XLOG_NO_TRAN related comments

2005-12-24 Thread Qingqing Zhou
The following patch improves XLOG_NO_TRAN related comments per discussion. Regards, Qingqing --- Index: backend/access/transam/clog.c === RCS file: /projects/cvsroot/pgsql/src/backend/access/transam/clog.c,v retrieving revision

[PATCHES] New HIGHBIG and IS_HIGHBIT_SET defines

2005-12-24 Thread Bruce Momjian
I have added these macros to c.h: #define HIGHBIT (0x80) #define IS_HIGHBIT_SET(ch) ((unsigned char)(ch) HIGHBIT) and removed CSIGNBIT and mapped it uses to HIGHBIT. I have also added uses for IS_HIGHBIT_SET where appropriate. This change is purely for

Re: [PATCHES] Improve XLOG_NO_TRAN related comments

2005-12-24 Thread Tom Lane
Qingqing Zhou [EMAIL PROTECTED] writes: The following patch improves XLOG_NO_TRAN related comments per discussion. Removing these comments entirely, without changing the code they explain, doesn't strike me as an improvement. regards, tom lane

Re: [PATCHES] Improve XLOG_NO_TRAN related comments

2005-12-24 Thread Qingqing Zhou
On Sat, 24 Dec 2005, Tom Lane wrote: Removing these comments entirely, without changing the code they explain, doesn't strike me as an improvement. Well, I still kept the XLOG_NO_TRAN and collect repeated comments to xlog.h where it is defined. Regards, Qingqing