Re: Error when dropping table

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Error when dropping table
Дата
Msg-id 5398.1088023097@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Error when dropping table  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Error when dropping table
Список pgsql-admin
Tom Lane <tgl@sss.pgh.pa.us> writes:
> "Chris White (cjwhite)" <cjwhite@cisco.com> writes:
>> On 7.4.2, I am trying to drop a table using the command
>> drop table vm_message cascade;
>> and I get the error message
>> relation "vm_message" has rel_triggers = 0

> I can't find any such error message in the 7.4 sources.

Oh, here it is --- should have checked the spelling of the pg_class
field:
        elog(ERROR, "relation \"%s\" has reltriggers = 0",
             RelationGetRelationName(rel));

The most likely bet is that a failed pg_restore left the relation's
triggers disabled.  You can fix this by doing what the restore should
have done:

UPDATE pg_catalog.pg_class SET reltriggers =
(SELECT count(*) FROM pg_catalog.pg_trigger where pg_class.oid = tgrelid)
FROM pg_catalog.pg_namespace
WHERE relnamespace = pg_namespace.oid AND nspname !~ '^pg_';

            regards, tom lane

В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Error when dropping table
Следующее
От: "Chris White (cjwhite)"
Дата:
Сообщение: Re: Error when dropping table