pg_relcheck - Mailing list pgsql-general

From Mark Tessier
Subject pg_relcheck
Date
Msg-id 20030302134832.12ba0818.mt@open2web.com
Whole thread Raw
Responses Re: pg_relcheck  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
I created a field and then decided to drop it. Postgres won't let me drop it, however. I get the following error
messagewhen trying to drop it using phppgadmin: 

Error - /home/httpd/htdocs/pgadmin/lib.inc.php -- Line: 718

PostgreSQL said: ERROR: Relation "pg_relcheck" does not exist
Your query:

SELECT
rcname as index_name,
rcsrc
FROM
pg_relcheck,
pg_class bc
WHERE
rcrelid = bc.oid
and bc.relname = 'client'
and not exists
(select * from pg_relcheck as c, pg_inherits as i
where i.inhrelid = pg_relcheck.rcrelid
and c.rcname = pg_relcheck.rcname
and c.rcsrc = pg_relcheck.rcsrc
and c.rcrelid = i.inhparent)

Could someone please explain why I am getting this error message.

--
Thanks,

Mark

pgsql-general by date:

Previous
From: "Ben-Nes Michael"
Date:
Subject: function problem plpgsql
Next
From: sector119@mail.ru
Date:
Subject: does tsearch work with utf-8?