Re: DROP COLUMN - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: DROP COLUMN
Date
Msg-id 200207160450.g6G4oxR06934@candle.pha.pa.us
Whole thread Raw
In response to Re: DROP COLUMN  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Responses Re: DROP COLUMN  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Re: DROP COLUMN  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Re: DROP COLUMN  ("Hiroshi Inoue" <Inoue@tpf.co.jp>)
List pgsql-hackers
Christopher Kings-Lynne wrote:
> > Uh, then what?  The only idea I had was to set a static boolean
> > variable in
> > syscache.c that controls whether droppped columns are returned, and have
> > a enable/disable functions that can turn it on/off.  The only problem is
> > that an elog inside a syscache lookup would leave that value set.
> >
> > My only other idea is to make a syscache that is like ATTNAME except
> > that it doesn't return a dropped column.  I could probably code that up
> > if you wish.
> 
> That'd be cool.
> 
> I guess the thing is that either way, I will need to manually change every
> single instance where a dropped column should be avoided.  So, really
> there's not much difference between me changing the SysCache search to use
> ATTNAMEUNDROPPED or whatever, or just checking the attisdropped field of the
> tuple in the same way that you must always check that attnum > 0.
> 
> In fact, looking at it logically...if all the commands currently are
> required to check that they're not modifiying a system column, then why not
> add the requirement that they must also not modify dropped columns?  I can
> do a careful doc search and try to make sure I've touched everything...

Makes sense.  Of course, we could make a syscache that didn't return
system columns either.

Actually, the original argument for negative attno's for dropped columns
was exactly for this case, that the system column check would catch
dropped columns too, but it causes other problems that are harder to fix
so we _dropped_ the idea.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


pgsql-hackers by date:

Previous
From: "Christopher Kings-Lynne"
Date:
Subject: Re: DROP COLUMN
Next
From: Tom Lane
Date:
Subject: Re: DROP COLUMN