Heikki Linnakangas <[EMAIL PROTECTED]> writes: > While thinking about index-organized-tables and similar ideas, it > occurred to me that there's some low-hanging-fruit: maintaining cluster > order on inserts by trying to place new heap tuples close to other > similar tuples.
Doesn't this happen for free if there's enough space? UPDATE tries to place the new tuple on the same page it's already on. In practice people are only likely to cluster by primary keys (or other things that seldom change) so I don't particularly agree with inventing a large wart to support "optimally" placing things somewhere else... regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Have you searched our list archives? http://archives.postgresql.org