Lines Matching refs:page
26 # This is because the 8th IO call attempts to read page 2 of the database
27 # file when the file on disk is only 1 page. The pager layer detects that
103 # onto an overflow page.
314 # Usually, after a new page is allocated from the end of the file, it does
315 # not need to be written to the journal. The exception is when the new page
316 # shares its sector with an existing page that does need to be journalled.
318 # that an IO error while journalling the coresident page is handled correctly.
325 # Create a test database. Page 2 is the root page of table t1. The only
326 # row inserted into t1 has an overflow page - page 3. Page 3 will be
327 # coresident on the 2048 byte sector with the next page to be allocated.
362 -- This statement uses the balance_quick() optimization. The new page
363 -- is appended to the database file. But the overflow page used by
388 -- This statement inserts a row into t1 with an overflow page at the
393 -- This transaction will cause the root-page of table t1 to divide
394 -- (by calling balance_deeper()). When it does, the "parent" page of the
395 -- overflow page inserted in the -sqlprep block above will change and
396 -- the corresponding pointer map page be updated. This test case attempts
397 -- to cause an IO error during the pointer map page update.