Re: Tuple data
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: "Michael Richards" <miker@interchange.ca>
Cc: "Hannu Krosing" <hannu@tm.ee>, pgsql-hackers@postgresql.org
Date: 2000-12-17T02:23:23Z
Lists: pgsql-hackers
"Michael Richards" <miker@interchange.ca> writes: > Sometimes the t_hoff value in the tuple header is 32 which seems to indicate > no NULL bitmap. There's no null bitmap unless the HASNULLS infomask bit is set. > This really makes me wonder what happens when you ALTER > TABLE ADD COLUMN on a table since it doesn't seem to take more than O(1) > time. Perhaps it is assumed if the attribute count is less than the actual > number of attributes then the last ones are NULL and no NULL map is > required. ALTER ADD COLUMN doesn't touch any tuples, and you're right that it's critically dependent on heap_getattr returning NULL when an attribute beyond the number of attributes actually present in a tuple is accessed. That's a fragile and unclean implementation IMHO --- see past traffic on this list. regards, tom lane