Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the file format documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.9 |
Files: | files | file ages | folders |
SHA1: |
1cc43dde6cdc5642ed9e3dd86fbc82aa |
User & Date: | drh 2015-12-27 14:43:51.961 |
Context
2015-12-28
| ||
16:20 | Add links to the built-in SQL function documentation to the docs.html page. (Leaf check-in: 51cd2291e6 user: drh tags: branch-3.9) | |
2015-12-27
| ||
14:43 | Fix a typo in the file format documentation. (check-in: 1cc43dde6c user: drh tags: branch-3.9) | |
2015-12-22
| ||
15:02 | Typo fix. (check-in: 9b6bab46ee user: drh tags: branch-3.9) | |
Changes
Changes to pages/fileformat2.in.
︙ | ︙ | |||
647 648 649 650 651 652 653 | values. A varint is between 1 and 9 bytes in length. The varint consists of either zero or more byte which have the high-order bit set followed by a single byte with the high-order bit clear, or nine bytes, whichever is shorter. The lower seven bits of each of the first eight bytes and all 8 bits of the ninth byte are used to reconstruct the 64-bit twos-complement integer. Varints are big-endian: bits taken from the earlier byte of the varint | | | 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | values. A varint is between 1 and 9 bytes in length. The varint consists of either zero or more byte which have the high-order bit set followed by a single byte with the high-order bit clear, or nine bytes, whichever is shorter. The lower seven bits of each of the first eight bytes and all 8 bits of the ninth byte are used to reconstruct the 64-bit twos-complement integer. Varints are big-endian: bits taken from the earlier byte of the varint are the more significant than bits taken from the later bytes. </p> <p>The format of a cell depends on which kind of b-tree page the cell appears on. The following table shows the elements of a cell, in order of appearance, for the various b-tree page types.</p> <blockquote><dl> <dt><p>Table B-Tree Leaf Cell (header 0x0d):</p></dt> |
︙ | ︙ |