pg 8.0.1-r3 killls pgadmin3 and phppgadmin

From: PFC <lists(at)boutiquenumerique(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: pg 8.0.1-r3 killls pgadmin3 and phppgadmin
Date: 2005-04-10 11:52:20
Message-ID: op.so0lxizhth1vuj@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

Hello,

Just installed pg 8.0.1-r3 and now phppgadmin and pgadmin3 die with a
cryptic error message.
I've traced it to the following query to get information about the
database :

SELECT pdb.datname AS datname, pu.usename AS datowner,
pg_encoding_to_char(encoding) AS datencoding,
(SELECT description FROM pg_description pd WHERE pdb.oid=pd.objoid) AS
datcomment,
(SELECT spcname FROM pg_catalog.pg_tablespace pt WHERE
pt.oid=pdb.dattablespace) AS tablespace
FROM pg_database pdb, pg_user pu
WHERE pdb.datdba = pu.usesysid AND NOT pdb.datistemplate
ORDER BY pdb.datname;

This query looks right to me and pg 8.0.0 does it fine, while 8.0.1-r3
says :

Error : Unexpected right parenthesis.

This is not very helpful...
What's going on ?

I've downgraded to 8.0.0 in the meantime.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tony Caduto 2005-04-10 14:37:13 Re: pg 8.0.1-r3 killls pgadmin3 and phppgadmin
Previous Message Thomas F.O'Connell 2005-04-10 07:27:05 Re: Lost in Foreign Key land

Browse pgsql-sql by date

  From Date Subject
Next Message Tony Caduto 2005-04-10 14:37:13 Re: pg 8.0.1-r3 killls pgadmin3 and phppgadmin
Previous Message Tom Lane 2005-04-10 03:21:19 Re: Question on triggers and plpgsql