Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Additional tests of sqlite3_prepare_v2. (CVS 3577) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b0650aa6cfcb4c59fd8556b8f5523573 |
User & Date: | drh 2007-01-08 22:40:33.000 |
Context
2007-01-09
| ||
14:01 | When an automatic re-prepare occurs, take care not to reset the internal schema symbol table. Ticket #2156. This change also includes some debugging enhancements. (CVS 3578) (check-in: 43fe7fc1c3 user: drh tags: trunk) | |
2007-01-08
| ||
22:40 | Additional tests of sqlite3_prepare_v2. (CVS 3577) (check-in: b0650aa6cf user: drh tags: trunk) | |
21:07 | Fix a critical bug in sqlite3_prepare_v2 that can lead to segfaults when the schema changes and the statement is recompiled automatically. Ticket #2154. (CVS 3576) (check-in: 3401388dba user: drh tags: trunk) | |
Changes
Changes to test/capi3c.test.
︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + | # #*********************************************************************** # This file implements regression tests for SQLite library. # # This is a copy of the capi3.test file that has been adapted to # test the new sqlite3_prepare_v2 interface. # |
︙ | |||
1123 1124 1125 1126 1127 1128 1129 1130 | 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 | + + - + + + + + + + + + + + + + + + + + + + + + + + + | } two do_test capi3c-17.18 { sqlite3_step $STMT } SQLITE_DONE do_test capi3c-17.99 { sqlite3_finalize $STMT } SQLITE_OK # On the mailing list it has been reported that finalizing after # an SQLITE_BUSY return leads to a segfault. Here we test that case. |