Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in an example in the fts4aux virtual table documentation. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 6743aed59468e4f857dc30afc47b30f171ced397 |
User & Date: | drh 2013-07-01 20:52:14 |
Context
2013-07-09
| ||
21:49 | Fix typo in version number for sqlite_stat3. check-in: a583de40a1 user: mistachkin tags: trunk | |
2013-07-01
| ||
20:52 | Fix a typo in an example in the fts4aux virtual table documentation. check-in: 6743aed594 user: drh tags: trunk | |
16:07 | Lots of tweaking and enhancements to the documentation, especially regarding the query planner and ways of controlling the query planner. check-in: 641e107a66 user: drh tags: trunk | |
Changes
Changes to pages/fts3.in.
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 |
<i>-- banana | 0 | 2 | 2</i>
<i>-- cherry | * | 3 | 3</i>
<i>-- cherry | 0 | 1 | 1</i>
<i>-- cherry | 1 | 2 | 2</i>
<i>-- date | * | 1 | 2</i>
<i>-- date | 0 | 1 | 2</i>
<i>-- elderberry | * | 1 | 2</i>
<i>-- elderberry | 1 | 1 | 1</i>
<i>-- elderberry | 1 | 1 | 1</i>
<i>--</i>
SELECT term, col, documents, occurrences FROM ft_terms;
</codeblock>
<p>
In the example, the values in the "term" column are all lower case,
|
| |
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 |
<i>-- banana | 0 | 2 | 2</i>
<i>-- cherry | * | 3 | 3</i>
<i>-- cherry | 0 | 1 | 1</i>
<i>-- cherry | 1 | 2 | 2</i>
<i>-- date | * | 1 | 2</i>
<i>-- date | 0 | 1 | 2</i>
<i>-- elderberry | * | 1 | 2</i>
<i>-- elderberry | 0 | 1 | 1</i>
<i>-- elderberry | 1 | 1 | 1</i>
<i>--</i>
SELECT term, col, documents, occurrences FROM ft_terms;
</codeblock>
<p>
In the example, the values in the "term" column are all lower case,
|