Craig Ringer <ring...@ringerc.id.au> writes: > On 06/10/2012 06:14 AM, Tom Lane wrote: >> phb.e...@free.fr writes: >>> When a table having a seial column has been created by a CREATE EXTENSION, >>> and when this table is later dropped from the extension, the associated >>> sequence must be also explicitely dropped from the extension.
>> This doesn't really seem like a bug to me. The sequence is a somewhat >> independent object. > I disagree; it is inconsistent with the expectation established in > normal operations that the sequence created to serve a SERIAL column is > owned by that table/column and is dropped when it is. But we're not talking about a DROP; we're talking about disassociating it from an extension. That's a sufficiently unusual thing to do that I think it dangerous to make any assumptions about why the extension author is doing that, or whether he wants the sequence to come too. In the reverse direction, ALTER EXTENSION ADD TABLE doesn't auto-add associated sequences either. If we did do something like this, pg_dump would need some complicated and fragile logic additions to understand the implications; for instance, if it saw an owned sequence that wasn't a member of the extension, it would have to know to issue an ALTER EXTENSION DROP SEQUENCE after adding the table. (Now admittedly, I'm on record as wanting to get rid of pg_dump having to do anything with extension members, but still it's a great example of why "helpful" automatic actions aren't necessarily a good thing.) regards, tom lane -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs