On Monday December 6 2004 9:45, Ed L. wrote:
> On Sun, 05 Dec 2004 14:54:38, Tom Lane wrote:
> > On Sunday December 5 2004 12:34, Ed L. wrote:
> > > The following queries result in a dropped sequence, but IMO should
> > > not:
> > >
> > > create table foo(id serial);
> > > create table bar(id integer not null nextval('foo_id_seq'::text));
> > > alter table foo alter column id drop default;
> > > drop table foo;
> > >
> > I don't think that follows at all.  The sequence is associated with the
> > column because of use of the "serial" declaration; dropping the default
> > expression doesn't change that.

Looking into this a little farther, I see from the 7.3.4 docs it's not a 
bug, it's a new feature.  Still, I'll whine that I don't see the point of 
restricting the re-use/adoption of existing serial-created sequences, and 
the restriction is biting me.  Yes, I see there are ways to work around 
this in the future.  Doesn't help much managing existing clusters whose 
schemas weren't adjusted in the move to 7.3 to account for this design 
change.  I can see the point of *not* dropping the sequence unless the 
owning column is dropped.  I just don't see the point of disabling the 
useful ability to decouple the sequence-column association, and dropping 
the default seems the most reasonable way to do that.

Ed


---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

Reply via email to