[BUGS] BUG #2975: UNIQUE INDEX doesn't work

2007-02-08 Thread Steven
The following bug has been logged online: Bug reference: 2975 Logged by: Steven Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4 Operating system: Windows Xp Sp2 Description:UNIQUE INDEX doesn't work Details: I have a unique index on a table, but

[BUGS] BUG #4626: postgresql recovery problem

2009-01-23 Thread Steven Mezzadri
The following bug has been logged online: Bug reference: 4626 Logged by: Steven Mezzadri Email address: smezz...@livonia.k12.mi.us PostgreSQL version: 8.1.11 Operating system: CentOS 5.2 Description:postgresql recovery problem Details: The database for our moodle

[BUGS] BUG #5120: Performance difference between running a query with named cursor and straight SELECT

2009-10-15 Thread Steven McLellan
The following bug has been logged online: Bug reference: 5120 Logged by: Steven McLellan Email address: smclel...@mintel.com PostgreSQL version: 8.3.x Operating system: FreeBSD 6.2 Description:Performance difference between running a query with named cursor and

[BUGS] CLUSTER bug

2000-05-10 Thread Darren Steven
Sorry for a downer on an excellent piece of software. -- Darren Steven Applications Specialist Networking Tasmania Telstra Australia Ph.1800 813 302 If PostgreSQL failed to compile on your computer or you found a bug that is likely to be specific to one platform then please fill out this

[BUGS] \lo_unlink results in "ERROR: pg_description: Permission denied."

2001-10-03 Thread Steven Mooij
-directory (copied all files to /home/postgres and created a softlink from /var/lib/postgres to /home/postgres, while postgresql was not running.) For me this was only a testdatabase, so for me it is not an urgent problem, but I hope this can be solved. Steven. --

[BUGS] Make check problem with 7.2

2002-03-02 Thread Steven Núñez
Hi All, I've just compiled and checked version 7.2 of the system on BSDI 4.0 and have noticed the following errors in the regression.diffs file ! psql: PQconnectPoll() -- couldn't send startup packet: errno=32 ! Broken pipe This is occurring for almost all of the test. Does anyone have any ide

Re: [BUGS] Make check problem with 7.2

2002-03-03 Thread Steven Núñez
lar errors from bash. I can't see any reason why the fork would fail however. I'm not sure it' related, but I thought it worth mentioning. Any suggestions are welcome. Regards, - Steve Nunez On 4/3/02 4:36, "Tom Lane" <[EMAIL PROTECTED]> wrote: > Steven N=

Re: [BUGS] Make check problem with 7.2

2002-03-03 Thread Steven Núñez
Is there any way to work around this problem? We no longer have support for this machine, so will probably not be able to recompile the kernel. Strange too, that it didn't happen on earlier versions. Regards, - Steve Nunez On 4/3/02 10:15, "Tom Lane" <[EMAIL PROTECTED]&g

Re: [BUGS] Make check problem with 7.2

2002-03-03 Thread Steven Núñez
That was it. All tests (except random and float8) pass. Thanks very much. - Steve Nunez On 4/3/02 13:03, "Bruce Momjian" <[EMAIL PROTECTED]> wrote: > Steven N=?ISO-8859-1?B?+vE=?=ez wrote: >> Is there any way to work around this problem? We no longer have suppor

[BUGS] Gmake check problem

2002-03-07 Thread Steven Núñez
Hi All, I've just compiled and checked version 7.2 of the system on BSDI 4.0 and have noticed the following errors in the regression.diffs file ! psql: PQconnectPoll() -- couldn't send startup packet: errno=32 ! Broken pipe This is occurring for almost all of the test. Does anyone have any ide

Re: [BUGS] Make check problem with 7.2

2002-03-07 Thread Steven Núñez
This time I've included the log file... su-2.02$ cat postmaster.log DEBUG: database system was shut down at 2002-03-03 19:43:39 EST DEBUG: checkpoint record is at 0/109664 DEBUG: redo record is at 0/109664; undo record is at 0/0; shutdown TRUE DEBUG: next transaction id: 89; next oid: 16556 D

[BUGS] BUG #2553: Outer join bug

2006-07-27 Thread Steven Adams
The following bug has been logged online: Bug reference: 2553 Logged by: Steven Adams Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4 Operating system: Red Hat Linux 3.2.3-42 Description:Outer join bug Details: Every time I use an outer join as the last

[BUGS] BUG #2582: Duplicate entries which violate primary key and unique index on same table

2006-08-19 Thread Steven Azar
The following bug has been logged online: Bug reference: 2582 Logged by: Steven Azar Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0.3 Operating system: Linux 2.6.15.6-1.smp.x86.i686.cmov #1 SMP Tue Mar 7 00:18:47 EST 2006 i686 athlon i386 GNU/Linux Description

[BUGS] Problem with insert

2007-03-06 Thread Steven Lambert
de_nr)VALUES ($1,$2,$3,$4,lo_import($5),$6,$7,$8,$9,$10,$11,$12,$13,$14);$BODY$LANGUAGE 'sql' VOLATILE;  Already thank you,greetings,Steven Lambert

[BUGS] pg_get_indexdef excludes tablespace info

2007-11-07 Thread Steven Flatt
Postgres 8.2.4. Would this be considered a bug or is the tablespace info excluded for a particular reason? # CREATE TABLESPACE foo_space LOCATION '/some/dir'; # CREATE TABLE foo (a int); # CREATE INDEX foo_idx ON foo(a) TABLESPACE foo_space; # SELECT pg_get_indexdef(oid) FROM pg_class WHERE reln

[BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-17 Thread Steven Flatt
The following bug has been logged online: Bug reference: 3883 Logged by: Steven Flatt Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: FreeBSD 6.1 Description:Autovacuum deadlock with truncate? Details: This isn't a postgres deadloc

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-17 Thread Steven Flatt
On 1/17/08, Alvaro Herrera <[EMAIL PROTECTED]> wrote: > > This isn't a postgres deadlock per se, but the end result is that two > > postgres backends are stuck, each waiting on a PGSemaphoreLock that the > > other presumably has. The processes have been stuck for hours. > > Can you reproduce this

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-17 Thread Steven Flatt
On 1/17/08, Tom Lane <[EMAIL PROTECTED]> wrote: > No, that's not what the backtraces say. The autovac process is trying > to get super-exclusive lock on a buffer (apparently in relation 16783 > --- what is that?). There's no evidence in the stack trace that the > TRUNCATE process has any conflict

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-18 Thread Steven Flatt
On 1/17/08, Tom Lane <[EMAIL PROTECTED]> wrote: > Do you still have the hung processes available? It would be really > useful to take a look at the buffer header that the autovac process's > LockBufferForCleanup() is working on. (In gdb, "f 3" then "p *bufHdr") Well I just lost the hung processe

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-21 Thread Steven Flatt
On Jan 18, 2008 10:58 AM, Tom Lane <[EMAIL PROTECTED]> wrote: > Hm, PIN_COUNT_WAITER flag is still set, and refcount = 2 saying there is > still someone else pinning the buffer, so nothing evidently wrong here. > > Could you check PrivateRefCount[14407] in both cores? > Okay, got two new hung proc

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-21 Thread Steven Flatt
On Jan 21, 2008 1:24 PM, Tom Lane <[EMAIL PROTECTED]> wrote: > Well, there's our problem: for some reason PID 7908 has this buffer > pinned, which is blocking the vacuum. That seems pretty darn odd for > a process that is about to (try to) truncate the table. The only way > I can imagine is that

Re: [BUGS] BUG #3883: Autovacuum deadlock with truncate?

2008-01-21 Thread Steven Flatt
On Jan 21, 2008 3:33 PM, Tom Lane <[EMAIL PROTECTED]> wrote: > I think we need to make some fixes here, but the fixes would mainly > consist of complaining about the first approach ;-). The second one > is a much safer way to do it. > Second approach looks good. Thanks for all your help! Steve

[BUGS] BUG #3898: Postgres autovacuum not respecting pg_autovacuum.enabled = false

2008-01-23 Thread Steven Flatt
The following bug has been logged online: Bug reference: 3898 Logged by: Steven Flatt Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: FreeBSD 6.1 Description:Postgres autovacuum not respecting pg_autovacuum.enabled = false Details: I

Re: [BUGS] BUG #3898: Postgres autovacuum not respecting pg_autovacuum.enabled = false

2008-01-24 Thread Steven Flatt
On 1/23/08, Tom Lane <[EMAIL PROTECTED]> wrote: > "Steven Flatt" <[EMAIL PROTECTED]> writes: > > I noticed that the Postgres autovacuum process was vacuuming some tables > > that had enabled = false in pg_autovacuum. > > I thin

[BUGS] Sorry/spam - how do you unsubscribe?

2003-07-27 Thread Steven Vajdic
---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html

[BUGS] UNSUBSCRIBE

2004-01-05 Thread Steven Vajdic
UNSUBSCRIBE ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

[BUGS] BUG #1662: Table constrains are not properly inherited.

2005-05-13 Thread Steven Mooij
The following bug has been logged online: Bug reference: 1662 Logged by: Steven Mooij Email address: [EMAIL PROTECTED] PostgreSQL version: 7.4.7 Operating system: i386-pc-linux-gnu, compiled by GCC i386-linux-gcc (GCC) 3.3.5 (Debian 1:3.3.5-12) Description:Table

[BUGS] BUG #2168: 45.000.000 records too much?

2006-01-13 Thread Steven Mooij
The following bug has been logged online: Bug reference: 2168 Logged by: Steven Mooij Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1 Operating system: Linux Description:45.000.000 records too much? Details: Tried to copy the result of a join into another

Re: [BUGS] BUG #2168: 45.000.000 records too much?

2006-01-19 Thread Steven Mooij
postgresql 8.0.3 on a 2.6.12 linux kernel. (Previously i tested with postgresql 7.4.9 on a 2.6.15 kernel.) I think you will be able to repeat the experiment with this information. Regards, Steven ---(end of broadcast)--- TIP 4: Have you searched

Re: [BUGS] BUG #2168: 45.000.000 records too much?

2006-01-19 Thread Steven Mooij
Tom Lane wrote: "Steven Mooij" <[EMAIL PROTECTED]> writes: testsearch=> insert into t_documentword2 (SELECT document_id, t_word2.id, frequency from t_documentword, t_word2 where t_documentword.word = t_word2.word); server closed the connection unexpectedly

Re: [BUGS] BUG #2168: 45.000.000 records too much?

2006-01-21 Thread Steven Mooij
Seneca Cunningham wrote: Steven Mooij wrote: Some additional info. We repeated the test on different hardware with unfortunately the same result. This is the output of the postgresql logfile of that experiment: [log messages about processes kill 9ed] This time we tested with

[BUGS] COPY FROM/TO losing a single byte of a multibyte UTF-8 sequence

2010-08-18 Thread Steven Schlansker
ep me on the CC for replies. I would very much appreciate help tracking this down! Thanks for your time :) Steven Schlansker -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

Re: [BUGS] COPY FROM/TO losing a single byte of a multibyte UTF-8 sequence

2010-08-19 Thread Steven Schlansker
On Aug 19, 2010, at 2:35 PM, Tom Lane wrote: > Steven Schlansker writes: >> I'm having a rather annoying problem - a particular string is causing the >> Postgres COPY functionality to lose a byte, causing data corruption in >> backups and transferred data. > >

Re: [BUGS] COPY FROM/TO losing a single byte of a multibyte UTF-8 sequence

2010-08-19 Thread Steven Schlansker
On Aug 19, 2010, at 3:24 PM, Tom Lane wrote: > Steven Schlansker writes: >> >> I'm not at all experienced with character encodings so I could >> be totally off base, but isn't it wrong to ever call isspace(0x85), >> whatever the result may be, given that

[BUGS] BUG #6182: /etc/init.d/postgresql-8.4 is incomplete for chkconfig

2011-08-29 Thread Steven Williams
The following bug has been logged online: Bug reference: 6182 Logged by: Steven Williams Email address: stwilli...@novell.com PostgreSQL version: 8.5.3 Operating system: SuSE Linux 11 Description:/etc/init.d/postgresql-8.4 is incomplete for chkconfig Details

Re: [JDBC] [BUGS] BUG #6293: JDBC driver performance

2012-02-02 Thread Steven Schlansker
t is only constructed once. This would alleviate the immediate problem from my viewpoint. If you would like more information, I do have the problem reproduced here in a controlled environment and would love nothing more than to test patches or provide whatever information might be helpful to fix this

[BUGS] initdb bug

2000-03-24 Thread Steven G Smith
POSTGRESQL BUG REPORT TEMPLATE Your name : Steven Smith Your email address : [EMAIL