Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix walmode.test so that all tests pass with SQLITE_TEMP_STORE=3. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6ba6e59a9d528fb1bdc530d48ab96a2d |
User & Date: | dan 2010-09-13 19:03:38.000 |
Context
2010-09-14
| ||
10:53 | Fix some test failures found running releasetest.tcl. (check-in: 56a9ce7774 user: dan tags: trunk) | |
2010-09-13
| ||
19:03 | Fix walmode.test so that all tests pass with SQLITE_TEMP_STORE=3. (check-in: 6ba6e59a9d user: dan tags: trunk) | |
18:58 | Add tests for compound SELECT statements to e_select.test. (check-in: 8b0b009f29 user: dan tags: trunk) | |
Changes
Changes to test/walmode.test.
︙ | |||
203 204 205 206 207 208 209 210 211 212 | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | + + + + + - + - + - + - + - - - - + - - - + | execsql { INSERT INTO t1 VALUES(3, 4); SELECT * FROM t1; PRAGMA main.journal_mode; } } {1 2 3 4 memory} if {$TEMP_STORE>=2} { set tempJrnlMode memory } else { set tempJrnlMode delete } do_test walmode-5.2.1 { sqlite3 db "" execsql { PRAGMA main.journal_mode } |
︙ |