Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a missing comma in fts5.in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b7f67421b78f8ebfed4126348923295a |
User & Date: | dan 2015-07-02 17:59:29.662 |
Context
2015-07-02
| ||
19:01 | Update the change log. (check-in: eb5c390d52 user: drh tags: trunk) | |
17:59 | Fix a missing comma in fts5.in. (check-in: b7f67421b7 user: dan tags: trunk) | |
2015-07-01
| ||
17:34 | Fix a typo in the zero-malloc memory allocator documentation. (check-in: fb40525c2c user: drh tags: trunk) | |
Changes
Changes to pages/fts5.in.
︙ | ︙ | |||
897 898 899 900 901 902 903 | </ol> <p>For example: <codeblock> <i>-- Return a copy of the text from the leftmost column of the current</i> <i>-- row, with phrase matches marked using html "b" tags.</i> | | | 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 | </ol> <p>For example: <codeblock> <i>-- Return a copy of the text from the leftmost column of the current</i> <i>-- row, with phrase matches marked using html "b" tags.</i> SELECT highlight(fts, 0, '<b>', '</b>') FROM fts WHERE fts MATCH ? </codeblock> <p>In cases where two or more phrase instances overlap (share one or more tokens in common), a single open and close marker is inserted for each set of overlapping phrases. For example: <codeblock> |
︙ | ︙ |