(pageId common.Pgid, reachable map[common.Pgid]*common.Page, freed map[common.Pgid]bool, kvStringer KVStringer, ch chan error)
| 89 | } |
| 90 | |
| 91 | func (tx *Tx) recursivelyCheckPage(pageId common.Pgid, reachable map[common.Pgid]*common.Page, freed map[common.Pgid]bool, |
| 92 | kvStringer KVStringer, ch chan error) { |
| 93 | tx.checkInvariantProperties(pageId, reachable, freed, kvStringer, ch) |
| 94 | tx.recursivelyCheckBucketInPage(pageId, reachable, freed, kvStringer, ch) |
| 95 | } |
| 96 | |
| 97 | func (tx *Tx) recursivelyCheckBucketInPage(pageId common.Pgid, reachable map[common.Pgid]*common.Page, freed map[common.Pgid]bool, |
| 98 | kvStringer KVStringer, ch chan error) { |
no test coverage detected