| 330 | // checkpointCount); |
| 331 | } |
| 332 | uint32_t freePages() { |
| 333 | u32 fp = 0; |
| 334 | sqlite3BtreeGetMeta(btree, BTREE_FREE_PAGE_COUNT, &fp); |
| 335 | return fp; |
| 336 | } |
| 337 | bool vacuum() { // Returns true if vacuum is complete or stalled by a lazy free root |
| 338 | int rc = sqlite3BtreeIncrVacuum(btree); |
| 339 | if (rc && rc != SQLITE_DONE) |
no test coverage detected