Overview
| Comment: | Fix a test case in FTS5 to make it compatible with Tcl 8.5. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a495f8e77e14241150f79e746c730328 |
| User & Date: | drh on 2016-07-25 21:11:53 |
| Other Links: | manifest | tags |
Context
|
2016-07-25
| ||
| 22:40 | In the VACUUM command, set the cache_size of the transient vacuum_db database to be the same as the database being vacuumed. (check-in: b78d9954 user: drh tags: trunk) | |
| 21:11 | Fix a test case in FTS5 to make it compatible with Tcl 8.5. (check-in: a495f8e7 user: drh tags: trunk) | |
| 16:10 | Minor test infrastructure changes to better support SEE testing. (check-in: 8dcb9d50 user: drh tags: trunk) | |
Changes
Modified ext/fts5/test/fts5simple.test from [cd23d407] to [5da9b15e].
| ︙ | ︙ | |||
261 262 263 264 265 266 267 |
# Test that character 0x1A is allowed in fts5 barewords.
#
do_test 11.0 {
execsql "CREATE VIRTUAL TABLE t4 USING fts5(x, tokenize=\"ascii tokenchars '\x1A'\")"
execsql "
INSERT INTO t4 VALUES('a b c \x1A');
INSERT INTO t4 VALUES('a b c d\x1A');
| | | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# Test that character 0x1A is allowed in fts5 barewords.
#
do_test 11.0 {
execsql "CREATE VIRTUAL TABLE t4 USING fts5(x, tokenize=\"ascii tokenchars '\x1A'\")"
execsql "
INSERT INTO t4 VALUES('a b c \x1A');
INSERT INTO t4 VALUES('a b c d\x1A');
INSERT INTO t4 VALUES('a b c \x1Ag');
INSERT INTO t4 VALUES('a b c d');
"
} {}
do_test 11.1 {
execsql "SELECT rowid FROM t4('\x1A')"
} {1}
|
| ︙ | ︙ |