Re: [PATCHES] [DOCS] Patch to update log levels

2007-09-21 Thread Magnus Hagander
On Thu, Sep 20, 2007 at 06:27:57PM -0700, Joshua D. Drake wrote: Joshua D. Drake wrote: Tom Lane wrote: Joshua D. Drake [EMAIL PROTECTED] writes: Here is a patch that documents the syslog log levels and their correlation to the PostgreSQL log levels per: This seems like quite the wrong

Re: [PATCHES] PL/TCL Patch to prevent postgres from becoming multithreaded

2007-09-21 Thread Marshall, Steve
I'm glad to see the patch making its way through the process. I'm also glad you guys do comprehensive testing before accepting it, since we are only able to test in a more limited range of environments. We have applied the patch to our 8.2.4 installations and are running it in a high transaction

[PATCHES] Minor comment fixes

2007-09-21 Thread Heikki Linnakangas
TransactionId*Is*InProgress is misspelled in a couple of comments in twophase.c.. -- Heikki Linnakangas EnterpriseDB http://www.enterprisedb.com Index: src/backend/access/transam/twophase.c === RCS file:

Re: [PATCHES] Minor comment fixes

2007-09-21 Thread Tom Lane
Heikki Linnakangas [EMAIL PROTECTED] writes: TransactionId*Is*InProgress is misspelled in a couple of comments in twophase.c.. Applied, thanks. regards, tom lane ---(end of broadcast)--- TIP 9: In versions below 8.0, the

[PATCHES] Eliminate more detoast copies for packed varlenas

2007-09-21 Thread Gregory Stark
Ok, this removes what should be most if not all of the call sites where we're detoasting text or byteas. In particular it gets all the regexp/like functions and all the trim/pad functions. It also gets hashtext and hash_any. $ zcat packed-varlena-efficiency_v0.patch.gz | diffstat

Re: [PATCHES] Eliminate more detoast copies for packed varlenas

2007-09-21 Thread Tom Lane
Gregory Stark [EMAIL PROTECTED] writes: Ok, this removes what should be most if not all of the call sites where we're detoasting text or byteas. In particular it gets all the regexp/like functions and all the trim/pad functions. It also gets hashtext and hash_any. Applied with some fixes ---