Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Extra test for commit [6dae62c4e5]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b10b9e758b171b0f514592bba70c3ecd |
User & Date: | dan 2013-05-15 16:24:46.069 |
Context
2013-05-15
| ||
17:08 | Make sure an sqlite3_close() or a rollback on one shared-cache connection does not disrupt the operation of other connections using the same shared cache. Fix for ticket [e636a050b709]. (check-in: 5cc1cc55d2 user: drh tags: trunk) | |
16:24 | Extra test for commit [6dae62c4e5]. (check-in: b10b9e758b user: dan tags: trunk) | |
16:16 | Add main.c to the list of files compiled with SQLITE_TEST defined when building testfixture. (check-in: a58af81483 user: dan tags: trunk) | |
Changes
Changes to test/collate3.test.
︙ | ︙ | |||
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | do_test collate3-1.7.5 { db close sqlite3 db test.db db collate caseless caseless catchsql { PRAGMA integrity_check } } {0 ok} do_test collate3-1.7.6 { execsql { DROP TABLE t1 } } {} # # Create a table with a default collation sequence, then close # and re-open the database without re-registering the collation # sequence. Then make sure the library stops us from using | > > > > > > > > | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | do_test collate3-1.7.5 { db close sqlite3 db test.db db collate caseless caseless catchsql { PRAGMA integrity_check } } {0 ok} proc needed {nm} { db collate caseless caseless } do_test collate3-1.7.6 { db close sqlite3 db test.db db collation_needed needed catchsql { PRAGMA integrity_check } } {0 ok} do_test collate3-1.8 { execsql { DROP TABLE t1 } } {} # # Create a table with a default collation sequence, then close # and re-open the database without re-registering the collation # sequence. Then make sure the library stops us from using |
︙ | ︙ |