> Under normal operations, shutting down the database does a > checkpoint, right? So unless you're in recovery mode, there's > no additional cost. > And I can't think of any reason you'd need to see any pages > before the last checkpoint (unless you don't trust your disk > and just want to check all the pages, which is more than we > can do now anyway).
The problem is you don't necessarily have the info which pages changed *after* the last checkpoint. Especially since in the mentioned scenario you don't have full-page images. Maybe a suitable replacement for full-page would be to sync the first WAL record for a page change before writing the buffer (startup recovery would then check all pages it touches). This syncing does not sound promising though. And it is also not only one page we are looking for, but one per controller (for battery backed) or one per phys disk. Andreas ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly