"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.
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