Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Before running each test script, make sure the FTS enhanced query syntax is disabled. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f84d87bcc0e4f6f56d01556b2b1dc27e |
User & Date: | dan 2012-05-12 05:30:29.959 |
Context
2012-05-12
| ||
18:29 | Parser bug fix: Make sure the table constraints allowed by prior releases can still be parsed, even if they are technically not allowed by the syntax diagram. (check-in: e536ac0418 user: drh tags: trunk) | |
14:59 | Merge trunk changes with apple-osx branch. (check-in: bf57f0fb73 user: dan tags: apple-osx) | |
11:50 | Update sessions branch with trunk changes. (check-in: 3f4848a871 user: dan tags: sessions) | |
05:30 | Before running each test script, make sure the FTS enhanced query syntax is disabled. (check-in: f84d87bcc0 user: dan tags: trunk) | |
01:14 | Use the regexp result option for a test case in shell1.test. (check-in: 93061c6e06 user: drh tags: trunk) | |
Changes
Changes to test/tester.tcl.
︙ | ︙ | |||
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 | foreach f [glob -nocomplain test.db*] { forcedelete $f } sqlite3 db $file } # If the library is compiled with the SQLITE_DEFAULT_AUTOVACUUM macro set # to non-zero, then set the global variable $AUTOVACUUM to 1. set AUTOVACUUM $sqlite_options(default_autovacuum) source $testdir/thread_common.tcl source $testdir/malloc_common.tcl | > > > | 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 | foreach f [glob -nocomplain test.db*] { forcedelete $f } sqlite3 db $file } # If the library is compiled with the SQLITE_DEFAULT_AUTOVACUUM macro set # to non-zero, then set the global variable $AUTOVACUUM to 1. set AUTOVACUUM $sqlite_options(default_autovacuum) # Make sure the FTS enhanced query syntax is disabled. set sqlite_fts3_enable_parentheses 0 source $testdir/thread_common.tcl source $testdir/malloc_common.tcl |
Changes to test/tkt-bdc6bbbb38.test.
︙ | ︙ | |||
82 83 84 85 86 87 88 89 | ORDER BY docid DESC } { {[a] [b] c} {[a] c [d]} } } finish_test | > | 82 83 84 85 86 87 88 89 90 | ORDER BY docid DESC } { {[a] [b] c} {[a] c [d]} } } set sqlite_fts3_enable_parentheses 0 finish_test |