[BUGS] BUG #4121: ERROR: could not open relation 1663/16403/469917: Invalid argument

2008-04-22 Thread Boldinov
The following bug has been logged online: Bug reference: 4121 Logged by: Boldinov Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.5 Operating system: Windows Server 2003 Standart Description:ERROR: could not open relation 1663/16403/469917: Invalid argument

[BUGS] ERROR: failed to re-find parent key in sl_seqlog_idx for deletion target

2008-04-22 Thread John Parnefjord
Hi! Hope anyone can shed some light on this. I was struck by the following error in the slony log but I believe it's not a slony error, rather that slony triggers an error in PostgreSQL. The error message is: cleanupThread: vacuum analyze sl_seqlog; - ERROR: failed to re-find parent key in

Re: [BUGS] ERROR: failed to re-find parent key in sl_seqlog_idx for deletion target

2008-04-22 Thread Magnus Hagander
John Parnefjord wrote: Hi! Hope anyone can shed some light on this. I was struck by the following error in the slony log but I believe it's not a slony error, rather that slony triggers an error in PostgreSQL. The error message is: Correct, that's not a backend error. cleanupThread:

Re: [BUGS] ERROR: failed to re-find parent key in sl_seqlog_idx for deletion target

2008-04-22 Thread John Parnefjord
Please copy out the files as requested in that email - I'm sure Tom is still interested in debugging it to find the issue. After that, try a REINDEX to see if it solves your problem. Ok, see the snippets below. I just cut them from the PgAdminIII interface. Drop me a mail if you need more

Re: [BUGS] ERROR: failed to re-find parent key in sl_seqlog_idx for deletion target

2008-04-22 Thread Magnus Hagander
John Parnefjord wrote: Please copy out the files as requested in that email - I'm sure Tom is still interested in debugging it to find the issue. After that, try a REINDEX to see if it solves your problem. Ok, see the snippets below. I just cut them from the PgAdminIII interface. Drop me

Re: [BUGS] ERROR: failed to re-find parent key in sl_seqlog_idx for deletion target

2008-04-22 Thread John Parnefjord
Yikes! I already done a reindexing of the table as there where locks that were holding back some jobs that needed to finished. But in case the problem should appear again we will take a copy of the actual data file. Anyway, the case must regarded as solved. Put shortly, reindex the

Re: [BUGS] BUG #4122: ./postres 'restart' does not start server with same options as 'start' does

2008-04-22 Thread Tom Lane
Eugen Konkov [EMAIL PROTECTED] writes: PostgreSQL version: 8.3.1 Operating system: FreeBSD 6.3 Description:./postres 'restart' does not start server with same options as 'start' does You'd need to take that up with whoever supplied your startup script. The one we provide (in

Re: [BUGS] DISTINCT MAX() results mismatch on 8.2 and 8.3

2008-04-22 Thread Kevin Grittner
On Wed, Mar 26, 2008 at 9:23 PM, in message [EMAIL PROTECTED], Taiki Yamaguchi [EMAIL PROTECTED] wrote: 8.3.0 == yamaguti=# create table t1 (i int, j int primary key); NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index t1_pkey for table t1 CREATE

Re: [BUGS] BUG #4123: Statement.setQueryTimeout does not work with Postgres Java Driver

2008-04-22 Thread Kris Jurka
On Tue, 22 Apr 2008, Amit Mujawar wrote: The following bug has been logged online: Bug reference: 4123 PostgreSQL version: 8.1 Description:Statement.setQueryTimeout does not work with Postgres Java Driver Details: I am using PostgreSQL through JDBC PostgreSQL ??? 8.1, Driver -

Re: [BUGS] DISTINCT MAX() results mismatch on 8.2 and 8.3

2008-04-22 Thread Tom Lane
Kevin Grittner [EMAIL PROTECTED] writes: yamaguti=# select distinct max(j) from t1; ERROR: could not find pathkey item to sort For the benefit of anyone searching the archives for the problem we just hit, this message also occurs in 8.3.1 and also occurs against the above test table for

Re: [BUGS] BUG #4122: ./postres 'restart' does not start server with same options as 'start' does

2008-04-22 Thread Eugen.Konkov
I have just installed Postgres 8.3.1. And /usr/local/etc/rc.d/postgresql and tar/contrib/start-scripts/freebsd scripts are different BUG in installator? - Original Message - From: Tom Lane [EMAIL PROTECTED] To: Eugen Konkov [EMAIL PROTECTED] Cc: pgsql-bugs@postgresql.org Sent:

Re: [BUGS] BUG #4122: ./postres 'restart' does not start server with same options as 'start' does

2008-04-22 Thread Stefan Kaltenbrunner
[EMAIL PROTECTED] wrote: I have just installed Postgres 8.3.1. And /usr/local/etc/rc.d/postgresql and tar/contrib/start-scripts/freebsd scripts are different BUG in installator? the one in /usr/local/etc/rc.d/postgresql is likely the on that freebsd supplies if you install from the porttree

[BUGS] Patch for LISTEN/NOTIFY race condition?

2008-04-22 Thread Meetesh Karia
Hi all, After upgrading to 8.3 and Slony 1.2.13, one of our import processes started constantly failing because of deadlock. Our import process (pl/pgsql function) just uses COPY FROM to populate a temp table and then inserts from that (without any special locks, etc). And, the deadlock

Re: [BUGS] BUG #4122: ./postres 'restart' does not start server with same options as 'start' does

2008-04-22 Thread Gary Doades
Stefan Kaltenbrunner wrote: [EMAIL PROTECTED] wrote: I have just installed Postgres 8.3.1. And /usr/local/etc/rc.d/postgresql and tar/contrib/start-scripts/freebsd scripts are different BUG in installator? the one in /usr/local/etc/rc.d/postgresql is likely the on that freebsd supplies if

Re: [BUGS] Patch for LISTEN/NOTIFY race condition?

2008-04-22 Thread Alvaro Herrera
Meetesh Karia wrote: Hi all, After upgrading to 8.3 and Slony 1.2.13, one of our import processes started constantly failing because of deadlock. Our import process (pl/pgsql function) just uses COPY FROM to populate a temp table and then inserts from that (without any special locks,

Re: [BUGS] Patch for LISTEN/NOTIFY race condition?

2008-04-22 Thread Tom Lane
Alvaro Herrera [EMAIL PROTECTED] writes: Meetesh Karia wrote: After upgrading to 8.3 and Slony 1.2.13, one of our import processes started constantly failing because of deadlock. Our import process (pl/pgsql function) just uses COPY FROM to populate a temp table and then inserts from