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
обсуждение исходный текст
Ответ на Re: ERROR: failed to change schema dependency for type xxx.yyy  (Laurenz Albe <laurenz.albe@cybertec.at>)
Список pgsql-admin
Laurenz Albe <laurenz.albe@cybertec.at> 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
Дата:
Сообщение: Re: ERROR: failed to change schema dependency for type xxx.yyy
Следующее
От: Vivek Gadge
Дата:
Сообщение: Connection Taking time to authentication of database