pagePrintMeta prints the data from the meta page.
(w io.Writer, buf []byte)
| 138 | |
| 139 | // pagePrintMeta prints the data from the meta page. |
| 140 | func pagePrintMeta(w io.Writer, buf []byte) error { |
| 141 | m := common.LoadPageMeta(buf) |
| 142 | m.Print(w) |
| 143 | return nil |
| 144 | } |
| 145 | |
| 146 | // pagePrintLeaf prints the data for a leaf page. |
| 147 | func pagePrintLeaf(w io.Writer, buf []byte, formatValue string) error { |
no test coverage detected