Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove some forgotten debugging lines from test/sort5.test. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f5875489810101c13a7917bde86e6a23 |
User & Date: | drh 2016-05-09 22:32:18.802 |
Context
2016-05-09
| ||
22:35 | Enhancements to test/sort5.test so that it works with SEE. (check-in: 8a39c8ee49 user: drh tags: trunk) | |
22:32 | Remove some forgotten debugging lines from test/sort5.test. (check-in: f587548981 user: drh tags: trunk) | |
19:03 | Update a comment in fts5.h. No changes to code. (check-in: 14e53d0e2f user: dan tags: trunk) | |
Changes
Changes to test/sort5.test.
︙ | ︙ | |||
74 75 76 77 78 79 80 | sqlite3 db test.db -vfs tvfs execsql { CREATE TABLE t1(x) } # Each iteration of the following loop attempts to sort 10001 records # each a bit over 100 bytes in size. In total a little more than 1MiB # of data. # | < < < | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | sqlite3 db test.db -vfs tvfs execsql { CREATE TABLE t1(x) } # Each iteration of the following loop attempts to sort 10001 records # each a bit over 100 bytes in size. In total a little more than 1MiB # of data. # foreach {tn pgsz cachesz bTemp} { 1 4096 1000 0 2 1024 1000 1 3 4096 -1000 1 4 1024 -1000 1 5 4096 -9000 0 |
︙ | ︙ | |||
109 110 111 112 113 114 115 | SELECT * FROM x ORDER BY j; } expr {[array names F]!=""} } $bTemp } finish_test | < | 106 107 108 109 110 111 112 | SELECT * FROM x ORDER BY j; } expr {[array names F]!=""} } $bTemp } finish_test |