Heikki Linnakangas <[EMAIL PROTECTED]> writes: > While thinking about this, I made an observation on full_page_writes. > Currently, we perform a full page write whenever LSN < RedoRecPtr. If > we're clever, we can skip or defer some of the full page writes:
I'm not convinced this is safe; in particular, ISTM that a PITR slave following the WAL log is likely to be at risk if it tries to restart from the checkpoint you've omitted some full-page-images after. There's no guarantee it will have flushed pages at the same spots the master did. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match