Re: [BUGS] BUG #4020: RFE: have way to log autovacuum activity

2008-03-07 Thread Alvaro Herrera
Joseph S wrote: > When autovacuum decides to vacuum one of our large tables, the whole site > slows down, but it is not always obvious why. It would be nice if there was > an option to log autovacuum activity so I know how often a vacuum runs and > how long it takes. Yeah, we have a configurable

[BUGS] BUG #4020: RFE: have way to log autovacuum activity

2008-03-07 Thread Joseph S
The following bug has been logged online: Bug reference: 4020 Logged by: Joseph S Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.5 Operating system: CentOS 5 Description:RFE: have way to log autovacuum activity Details: When autovacuum decides to vacuum on

Re: [BUGS] [PATCH] Don't bail with legitimate -N/-B options

2008-03-07 Thread Tom Lane
I wrote: > Anyway, it seems that we cannot raise the minimum value of > shared_buffers to 200, or even 100, unless we are prepared to blow off > SHMMAX = 2MB or do something about the fixed SLRU allocation. After further thought I propose that we just eliminate the interlock between -N and -B. I

Re: [BUGS] BUG #3829: Wrong index reporting from pgAdmin III (v1.8.0 rev 6766-6767)

2008-03-07 Thread Bruce Momjian
Added to TODO: * Add a function like pg_get_indexdef() that report more detailed index information http://archives.postgresql.org/pgsql-bugs/2007-12/msg00166.php --- Dave Page wrote: > Tom Lane wrote: > >> We use the

Re: [BUGS] BUG #4019: Comparison of user defined domain doesn't work

2008-03-07 Thread Tom Lane
Stephan Szabo <[EMAIL PROTECTED]> writes: > On Fri, 7 Mar 2008, Tom Lane wrote: >> "Jan Strube" <[EMAIL PROTECTED]> writes: Description:Comparison of user defined domain doesn't work >> >> I can't reproduce this here --- the test case gives the expected output >> on both 8.2 and 8.3.

Re: [BUGS] BUG #4019: Comparison of user defined domain doesn't work

2008-03-07 Thread Stephan Szabo
On Fri, 7 Mar 2008, Tom Lane wrote: > "Jan Strube" <[EMAIL PROTECTED]> writes: > > Description:Comparison of user defined domain doesn't work > > I can't reproduce this here --- the test case gives the expected output > on both 8.2 and 8.3. (I'm checking CVS tip not the 8.3.0 release, bu

Re: [BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread Tom Lane
"Heikki Linnakangas" <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> Ouch. So this has been broken (by me, I think :-() since 8.0. Tells >> you something about how many people use hash indexes :-( > Yeah. Also, this is very hard to trigger without --enable-cassert (or > just CLOBBER_FREED_MEMO

Re: [BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread Tom Lane
I wrote: > Ouch. So this has been broken (by me, I think :-() since 8.0. Tells > you something about how many people use hash indexes :-( Actually it's not that bad --- this particular test case doesn't crash in 8.0 or 8.1. I'm guessing we rearranged the order of transaction abort processing in

[BUGS] Loading pljava: specified module could not be found

2008-03-07 Thread Roberts, Jon
Version: 8.3 Platform: Windows Installation: Clicked the pl/java checkbox on installation Postgresql.conf changes custom_variable_classes = 'pljava' pljava.classpath='C:\\Program Files\\PostgreSQL\\8.3\\share\\pljava.jar' OS Path: I added C:\Program Files\Java\jdk1.6.0_02\jre\bin\client a

Re: [BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread Heikki Linnakangas
Tom Lane wrote: "Heikki Linnakangas" <[EMAIL PROTECTED]> writes: I can reproduce this, with --enable-cassert. It crashes when aborting the transaction, in ReleaseResources_hash. The HashScanList items are allocated in ExecutorState memory context, but that context has already been deleted by t

Re: [BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread Tom Lane
"Heikki Linnakangas" <[EMAIL PROTECTED]> writes: > I can reproduce this, with --enable-cassert. It crashes when aborting > the transaction, in ReleaseResources_hash. The HashScanList items are > allocated in ExecutorState memory context, but that context has already > been deleted by the time we

Re: [BUGS] BUG #4019: Comparison of user defined domain doesn't work

2008-03-07 Thread Tom Lane
"Jan Strube" <[EMAIL PROTECTED]> writes: > Description:Comparison of user defined domain doesn't work I can't reproduce this here --- the test case gives the expected output on both 8.2 and 8.3. (I'm checking CVS tip not the 8.3.0 release, but there surely haven't been any bug fixes that

Re: [BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread Heikki Linnakangas
ykhuang wrote: recurred through deadlock. client1: create table test(a int); create index id on test using hash(a); insert into test values(1); insert into test values(2); set enable_seqscan=off; begin; update test set a=a+1 where a=1; client2: set enable_seqscan=off; begin; update te

[BUGS] BUG #4019: Comparison of user defined domain doesn't work

2008-03-07 Thread Jan Strube
The following bug has been logged online: Bug reference: 4019 Logged by: Jan Strube Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3 Operating system: openSUSE Linux 10.2 Description:Comparison of user defined domain doesn't work Details: Hi, I think when c

[BUGS] BUG #4018: Installation failure

2008-03-07 Thread
The following bug has been logged online: Bug reference: 4018 Logged by: Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.6 Operating system: Windows XP Professional Service Pack 2 Description:Installation failure Details: The installer for PostgreSQL 8.2.6

[BUGS] Error during hash index scans can cause postgres halt!

2008-03-07 Thread ykhuang
recurred through deadlock. client1: create table test(a int); create index id on test using hash(a); insert into test values(1); insert into test values(2); set enable_seqscan=off; begin; update test set a=a+1 where a=1; client2: set enable_seqscan=off; begin; update test set a=a+1 wher