Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the walmode.test test script introducted yesterday. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | wal |
Files: | files | file ages | folders |
SHA1: |
dcabc90ca588281fa7a290972ec8af68 |
User & Date: | drh 2010-05-01 11:33:14.000 |
Context
2010-05-01
| ||
16:40 | Support compile-time option SQLITE_OMIT_WAL, for building without WAL support. (check-in: 9b230c43df user: dan tags: wal) | |
11:33 | Fix a typo in the walmode.test test script introducted yesterday. (check-in: dcabc90ca5 user: drh tags: wal) | |
11:19 | Fix the sqlite3_mutex_alloc() interface to return NULL (not segfault) when operating in threadsafe mode. (This is a general-purpose bug fix which really ought to be ported to trunk.) (check-in: 64840a3caf user: drh tags: wal) | |
Changes
Changes to test/walmode.test.
︙ | ︙ | |||
205 206 207 208 209 210 211 | PRAGMA main.journal_mode; } } {1 2 3 4 delete} if {$TEMP_STORE>=2} { set tempJrnlMode memory } else { | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | PRAGMA main.journal_mode; } } {1 2 3 4 delete} if {$TEMP_STORE>=2} { set tempJrnlMode memory } else { set tempJrnlMode delete } do_test walmode-5.3.1 { sqlite3 db test.db execsql { PRAGMA temp.journal_mode } } $tempJrnlMode do_test walmode-5.3.2 { execsql { PRAGMA temp.journal_mode = wal } |
︙ | ︙ |