Re: ERROR: failed to change schema dependency for type xxx.yyy

Поиск
Список
Период
Сортировка
Искать
От
Tom Lane
Тема
Re: ERROR: failed to change schema dependency for type xxx.yyy
Дата
Msg-id
2965714.1673970387@sss.pgh.pa.us
Ответ на
Список
Дерево обсуждения
ERROR: failed to change schema dependency for type xxx.yyy Kouber Saparev <kouber@gmail.com>
Re: ERROR: failed to change schema dependency for type xxx.yyy Laurenz Albe <laurenz.albe@cybertec.at>
Re: ERROR: failed to change schema dependency for type xxx.yyy Tom Lane <tgl@sss.pgh.pa.us>
Re: ERROR: failed to change schema dependency for type xxx.yyy Erik Wienhold <ewie@ewie.name>
Laurenz Albe  writes:
> On Tue, 2023-01-17 at 12:46 +0200, Kouber Saparev wrote:
>> Any ideas how we could proceed any further?
>> And btw what is the entry above: objid = 1202633909 + deptype = i?

> There was probably a dependency *missing*: you get this error message if
> the database wants to delete the dependency on the old schema and add
> one on the new schema, but it cannot find the former.
> This is data corruption, but considering the way you delete catalog entries,
> I am not surprised.

Indeed.  Personally, when I want to look into pg_depend, I invariably
use pg_describe_object() to make sense of the entries.

regression=# create type foo as enum ('a','b');
CREATE TYPE
regression=# create schema bar;
CREATE SCHEMA
regression=# alter type public.foo set schema bar;
ALTER TYPE
regression=# create schema baz;
CREATE SCHEMA
regression=# alter type bar.foo set schema baz;
ALTER TYPE

regression=# select pg_describe_object(classid, objid, objsubid) as obj, pg_describe_object(refclassid, refobjid, refobjsubid) as ref, deptype from pg_depend where refobjid = 'baz.foo'::regtype;
      obj       |     ref      | deptype 
----------------+--------------+---------
 type baz.foo[] | type baz.foo | i
(1 row)

regression=# select pg_describe_object(classid, objid, objsubid) as obj, pg_describe_object(refclassid, refobjid, refobjsubid) as ref, deptype from pg_depend where objid = 'baz.foo'::regtype;
     obj      |    ref     | deptype 
--------------+------------+---------
 type baz.foo | schema baz | n
(1 row)

If you'd done it like that, you would probably have figured out fairly
quickly that you were looking at the wrong end of the dependency
relationships.  See also

https://www.postgresql.org/docs/current/catalog-pg-depend.html

			regards, tom lane


В списке pgsql-admin по дате отправления
От: Laurenz Albe
Дата:
От: Vivek Gadge
Дата:
FAQ