Bruce Momjian <[EMAIL PROTECTED]> writes: > Largely-illusory? Almost every pg_attribute query will have to be modified > for isdropped, while Hiroshi's approach requires so few changes, we are > having trouble even finding a query that needs to be modified. That's > pretty clear to me.
Apparently you didn't think hard about the pg_dump example. The problem there isn't the query so much as it is the wired-in assumption that the retrieved rows will correspond to attnums 1-N in sequence. That assumption breaks either way we do it. The illusion is thinking that clients won't break. I suspect it will actually be easier to fix pg_dump if we use the attisdropped approach --- it could keep the assumption that its array indexes equal attnums, include attisdropped explicitly in the rows it stores, and just not output rows that have attisdropped true. Getting rid of the index == attnum assumption will be a considerably more subtle, and fragile, patch. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster