Re: [HACKERS] Bright ideas required for drop column...

2002-07-18 Thread Tom Lane
"Christopher Kings-Lynne" <[EMAIL PROTECTED]> writes: > Does anyone know how I should modify MergeAttributes to support dropped > columns? I think you could get away with just ignoring dropped columns from the parent. There's no assumption that column numbers are the same in parent and child.

[HACKERS] Bright ideas required for drop column...

2002-07-17 Thread Christopher Kings-Lynne
Does anyone know how I should modify MergeAttributes to support dropped columns? If the parent column is dropped, should I perhaps just instead of going: def = makeNode(ColumnDef); I could go something like: def = makeNullNode(); (or whatever the correct function is) Or should I modify or re