Re: [PATCHES] contrib/dbmirror

2004-04-21 Thread Bruce Momjian
Patch applied. Thanks. Should this be backpatched to 7.4.X? The patch didn't apply cleanly to that CVS branch. --- [EMAIL PROTECTED] wrote: > > Attached is are a few small fixes for dbmirror. > > 1. Fixed bug where seq

Re: [PATCHES] [JDBC] EXECUTE command tag returns actual command

2004-04-21 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > Your patch has been added to the PostgreSQL unapplied patches list at: > > > Kris Jurka wrote: > >> This patch makes the EXECUTE command's completion tag return the > >> completion tag of the actual statement executed. > > While I d

[PATCHES] psql: \d+ shows OID-ness

2004-04-21 Thread Neil Conway
This patch makes psql's \d+ command indicate whether the table in question contains OIDs or not. I didn't add this information to \d, on the grounds that \d is more commonly used and few people will care whether the table as OIDs. Example output: nconway=# create table t1 () with oids; CREATE TABL

Re: [PATCHES] Fix for socket error msgs on win32

2004-04-21 Thread Bruce Momjian
Patch applied. Thanks. --- Magnus Hagander wrote: > Per discussion earlier today, here is a fix that lets ereport() on win32 > report socket errors. > > > //Magnus > > > <> Content-Description: win32_socketerror.pat

Re: [PATCHES] PSQLRC environment variable.

2004-04-21 Thread Peter Eisentraut
Bruce Momjian wrote: > Applied. Replace rename it to psqlrc instead of psql.rc. ---(end of broadcast)--- TIP 8: explain analyze is your friend

Re: [PATCHES] [JDBC] EXECUTE command tag returns actual command

2004-04-21 Thread Bruce Momjian
Patch applied. Thanks. --- Kris Jurka wrote: > > This patch makes the EXECUTE command's completion tag return the > completion tag of the actual statement executed. This allows the > correct update count to be returned

Re: [PATCHES] PSQLRC environment variable.

2004-04-21 Thread Bruce Momjian
Applied. --- Bruce Momjian wrote: > Bruce Momjian wrote: > > Tom Lane wrote: > > > Bruce Momjian <[EMAIL PROTECTED]> writes: > > > > I just checked a few apps and I see they usually allow a global config > > > > file to be s

[PATCHES] make 'PrivateRefCount' 32 bits wide

2004-04-21 Thread Neil Conway
This patch changes PrivateRefCount and LocalRefCount in the bufmgr from being arrays of long to arrays of int32, per earlier discussion. This should save a little memory on 64LP machines, and there's no way we need to track > 2^31 references to a single buffer. I also fixed the rather widespread a

Re: [PATCHES] doc improv: backup/restore

2004-04-21 Thread Neil Conway
On Wed, 2004-04-21 at 14:47, Alvaro Herrera wrote: > I'm not sure, but seems the reference to work_mem is gone? Not sure what you mean; neither the old version of the docs nor the new version mentioned work_mem, they mention "maintenance_work_mem", and the patch doesn't change that. I also replace

Re: [PATCHES] doc improv: backup/restore

2004-04-21 Thread Alvaro Herrera
On Wed, Apr 21, 2004 at 01:22:25PM -0400, Neil Conway wrote: > This patch improves the backup & restore documentation somewhat: I added > a few more cross-refs, documented increasing checkpoint_segments, and > made a few other minor improvements. > > I intend to apply this within 24 hours barring

[PATCHES] FW: Timezone library

2004-04-21 Thread Magnus Hagander
This mail apparantly didn't make it through because it was too large. Resending it without the largest file, tzlib.tgz. I've put this file (+ the patches) on http://www.hagander.net/pgsql/. //Magnus > -Original Message- > From: Magnus Hagander > Sent: Sunday, April 18, 2004 9:05 PM > T

[PATCHES] doc improv: backup/restore

2004-04-21 Thread Neil Conway
This patch improves the backup & restore documentation somewhat: I added a few more cross-refs, documented increasing checkpoint_segments, and made a few other minor improvements. I intend to apply this within 24 hours barring any complaints. -Neil Index: doc/src/sgml/backup.sgml ===