Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add test case 'cgt_pager_1', intended for use with callgrind to detect performance regression in the pager module, to threadtest3.c. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | experimental |
Files: | files | file ages | folders |
SHA1: |
b5d46f1ea08db2b88d2205bc283b9262 |
User & Date: | dan 2010-08-07 05:15:23.000 |
Context
2010-08-07
| ||
09:31 | Fix a problem wherein changing the journal-mode immediately after leaving exclusive-locking mode could lead to the database being unlocked without clearing the changeCountDone flag. (check-in: 531abc8085 user: dan tags: experimental) | |
05:15 | Add test case 'cgt_pager_1', intended for use with callgrind to detect performance regression in the pager module, to threadtest3.c. (check-in: b5d46f1ea0 user: dan tags: experimental) | |
2010-08-06
| ||
17:18 | Further enhancements to comments in pager.c. (check-in: 876162c7e0 user: dan tags: experimental) | |
Changes
Changes to test/threadtest3.c.
︙ | ︙ | |||
513 514 515 516 517 518 519 520 521 522 523 524 525 526 | sqlite3_close(pDb->db); pDb->db = 0; }else{ sqlite3_create_function( pDb->db, "md5sum", -1, SQLITE_UTF8, 0, 0, md5step, md5finalize ); sqlite3_busy_handler(pDb->db, busyhandler, 0); } } } static void closedb_x( Error *pErr, /* IN/OUT: Error code */ Sqlite *pDb /* OUT: Database handle */ | > | 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 | sqlite3_close(pDb->db); pDb->db = 0; }else{ sqlite3_create_function( pDb->db, "md5sum", -1, SQLITE_UTF8, 0, 0, md5step, md5finalize ); sqlite3_busy_handler(pDb->db, busyhandler, 0); sqlite3_exec(pDb->db, "PRAGMA synchronous=OFF", 0, 0, 0); } } } static void closedb_x( Error *pErr, /* IN/OUT: Error code */ Sqlite *pDb /* OUT: Database handle */ |
︙ | ︙ | |||
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 | if( err.rc==SQLITE_OK ){ printf(" WAL file is %d bytes,", (int)filesize(&err,"test.db-wal")); printf(" DB file is %d.\n", (int)filesize(&err,"test.db")); } print_and_free_err(&err); } int main(int argc, char **argv){ struct ThreadTest { void (*xTest)(int); const char *zTest; int nMs; } aTest[] = { { walthread1, "walthread1", 20000 }, { walthread2, "walthread2", 20000 }, { walthread3, "walthread3", 20000 }, { walthread4, "walthread4", 20000 }, { walthread5, "walthread5", 1000 }, }; int i; char *zTest = 0; int nTest = 0; int bTestfound = 0; int bPrefix = 0; | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 | if( err.rc==SQLITE_OK ){ printf(" WAL file is %d bytes,", (int)filesize(&err,"test.db-wal")); printf(" DB file is %d.\n", (int)filesize(&err,"test.db")); } print_and_free_err(&err); } /*------------------------------------------------------------------------ ** Test case "cgt_pager_1" */ #define CALLGRINDTEST1_NROW 10000 static void cgt_pager_1_populate(Error *pErr, Sqlite *pDb){ const char *zInsert = "INSERT INTO t1 VALUES(:iRow, zeroblob(:iBlob))"; i64 iRow; sql_script(pErr, pDb, "BEGIN"); for(iRow=1; iRow<=CALLGRINDTEST1_NROW; iRow++){ i64 iBlob = 600 + (iRow%300); execsql(pErr, pDb, zInsert, &iRow, &iBlob); } sql_script(pErr, pDb, "COMMIT"); } static void cgt_pager_1_update(Error *pErr, Sqlite *pDb){ const char *zUpdate = "UPDATE t1 SET b = zeroblob(:iBlob) WHERE a = :iRow"; i64 iRow; sql_script(pErr, pDb, "BEGIN"); for(iRow=1; iRow<=CALLGRINDTEST1_NROW; iRow++){ i64 iBlob = 600 + ((iRow+100)%300); execsql(pErr, pDb, zUpdate, &iBlob, &iRow); } sql_script(pErr, pDb, "COMMIT"); } static void cgt_pager_1_read(Error *pErr, Sqlite *pDb){ i64 iRow; sql_script(pErr, pDb, "BEGIN"); for(iRow=1; iRow<=CALLGRINDTEST1_NROW; iRow++){ execsql(pErr, pDb, "SELECT * FROM t1 WHERE a = :iRow", &iRow); } sql_script(pErr, pDb, "COMMIT"); } static void cgt_pager_1(int nMs){ void (*xSub)(Error *, Sqlite *); Error err = {0}; Sqlite db = {0}; opendb(&err, &db, "test.db", 1); sql_script(&err, &db, "PRAGMA cache_size = 2000;" "PRAGMA page_size = 1024;" "CREATE TABLE t1(a INTEGER PRIMARY KEY, b BLOB);" ); xSub = cgt_pager_1_populate; xSub(&err, &db); xSub = cgt_pager_1_update; xSub(&err, &db); xSub = cgt_pager_1_read; xSub(&err, &db); closedb(&err, &db); print_and_free_err(&err); } int main(int argc, char **argv){ struct ThreadTest { void (*xTest)(int); const char *zTest; int nMs; } aTest[] = { { walthread1, "walthread1", 20000 }, { walthread2, "walthread2", 20000 }, { walthread3, "walthread3", 20000 }, { walthread4, "walthread4", 20000 }, { walthread5, "walthread5", 1000 }, { walthread5, "walthread5", 1000 }, { cgt_pager_1, "cgt_pager_1", 0 }, }; int i; char *zTest = 0; int nTest = 0; int bTestfound = 0; int bPrefix = 0; |
︙ | ︙ |