Re: Unable to drop sequence due to dependency?

Поиск
Список
Период
Сортировка
От Glen Parker
Тема Re: Unable to drop sequence due to dependency?
Дата
Msg-id 49AF2869.7020008@nwlink.com
обсуждение исходный текст
Ответ на Re: Unable to drop sequence due to dependency?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Unable to drop sequence due to dependency?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Tom Lane wrote:
> What's the whole contents of the rows with refobjid matching the
> sequence's OID?  In particular, classid::regclass would tell you
> where to look for the dependent object.

oms=# select * from pg_depend where objid = 1011680210;
  classid |   objid    | objsubid | refclassid | refobjid | refobjsubid
| deptype
---------+------------+----------+------------+----------+-------------+---------
     1259 | 1011680210 |        0 |       2615 |     2200 |           0 | n
(1 row)

oms=# select * from pg_depend where refobjid = 1011680210;
  classid |   objid    | objsubid | refclassid |  refobjid  |
refobjsubid | deptype
---------+------------+----------+------------+------------+-------------+---------
     2604 | 1011687585 |        0 |       1259 | 1011680210 |
0 | n
     1247 | 1011680211 |        0 |       1259 | 1011680210 |
0 | i
(2 rows)


  > Typically, the default expression for a serial column based on the
> sequence.  It's a bit odd that the DROP doesn't tell you about it
> though.


For some reason I got into my head the notion that a sequence could be
dropped even if reference by a field default.  This seems pretty silly now.

-Glen


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Unable to drop sequence due to dependency?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Unable to drop sequence due to dependency?