Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the order of parameters to SQLITE_CONFIG_PAGECACHE in the speedtest1.exe program. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dbe85ef6d265ed31f4b56dfc0c72bad6 |
User & Date: | drh 2013-11-23 04:32:18.644 |
Context
2013-11-23
| ||
11:45 | Report errors from sqlite3_exec() and sqlite3_config() in speedtest1. Fix a bug in the main testing logic that was found by these error reports. (check-in: 659f1a98ae user: drh tags: trunk) | |
04:32 | Fix the order of parameters to SQLITE_CONFIG_PAGECACHE in the speedtest1.exe program. (check-in: dbe85ef6d2 user: drh tags: trunk) | |
04:22 | Adjust MSVC makefile to avoid using forward slashes in file names. (check-in: facf6deaa6 user: mistachkin tags: trunk) | |
Changes
Changes to test/speedtest1.c.
︙ | ︙ | |||
903 904 905 906 907 908 909 | if( pHeap==0 ) fatal_error("cannot allocate %d-byte heap\n", nHeap); sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, mnHeap); } if( nPCache>0 && szPCache>0 ){ pPCache = malloc( nPCache*szPCache ); if( pPCache==0 ) fatal_error("cannot allocate %d-byte pcache\n", nPCache*szPCache); | | | 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 | if( pHeap==0 ) fatal_error("cannot allocate %d-byte heap\n", nHeap); sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, mnHeap); } if( nPCache>0 && szPCache>0 ){ pPCache = malloc( nPCache*szPCache ); if( pPCache==0 ) fatal_error("cannot allocate %d-byte pcache\n", nPCache*szPCache); sqlite3_config(SQLITE_CONFIG_PAGECACHE, pPCache, szPCache, nPCache); } if( nLook>0 ){ sqlite3_config(SQLITE_CONFIG_LOOKASIDE, 0, 0); } /* Open the database and the input file */ if( sqlite3_open(zDbName, &g.db) ){ |
︙ | ︙ |