Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In pager1.test, use "file attr test.db -readonly 0" before "file attr test.db -perm rw-rw-rw-", not after. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4f5283f18f570a09b95c26e5aa14885a |
User & Date: | dan 2012-03-17 15:12:16.594 |
Context
2012-03-19
| ||
10:21 | Ensure that compatible malloc and free functions are used with stat3 data if SQLITE_ENABLE_STAT3 is defined. (check-in: 32bb1ecee4 user: dan tags: trunk) | |
2012-03-17
| ||
15:12 | In pager1.test, use "file attr test.db -readonly 0" before "file attr test.db -perm rw-rw-rw-", not after. (check-in: 4f5283f18f user: dan tags: trunk) | |
09:43 | Modify a test in ioerr2.test to account for the new SQLITE_ABORT_ROLLBACK extended error code. (check-in: affaebde10 user: dan tags: trunk) | |
Changes
Changes to test/pager1.test.
︙ | ︙ | |||
895 896 897 898 899 900 901 | sqlite3_db_readonly db main } {1} do_test pager1.4.8.2 { sqlite3_db_readonly db xyz } {-1} do_test pager1.4.8.3 { db close | | | | 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 | sqlite3_db_readonly db main } {1} do_test pager1.4.8.2 { sqlite3_db_readonly db xyz } {-1} do_test pager1.4.8.3 { db close catch {file attributes test.db -readonly 0} catch {file attributes test.db -permissions rw-rw-rw-} msg sqlite3 db test.db db eval { SELECT * FROM t1 } sqlite3_db_readonly db main } {0} #------------------------------------------------------------------------- # The following tests deal with multi-file commits. |
︙ | ︙ |