| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** A program for performance testing. | 2 ** A program for performance testing. |
| 3 ** | 3 ** |
| 4 ** The available command-line options are described below: | 4 ** The available command-line options are described below: |
| 5 */ | 5 */ |
| 6 static const char zHelp[] = | 6 static const char zHelp[] = |
| 7 "Usage: %s [--options] DATABASE\n" | 7 "Usage: %s [--options] DATABASE\n" |
| 8 "Options:\n" | 8 "Options:\n" |
| 9 " --autovacuum Enable AUTOVACUUM mode\n" | 9 " --autovacuum Enable AUTOVACUUM mode\n" |
| 10 " --cachesize N Set the cache size to N\n" | 10 " --cachesize N Set the cache size to N\n" |
| (...skipping 1388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1399 printf("-- Largest Scratch Allocation: %d bytes\n", iHi); | 1399 printf("-- Largest Scratch Allocation: %d bytes\n", iHi); |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 /* Release memory */ | 1402 /* Release memory */ |
| 1403 free( pLook ); | 1403 free( pLook ); |
| 1404 free( pPCache ); | 1404 free( pPCache ); |
| 1405 free( pScratch ); | 1405 free( pScratch ); |
| 1406 free( pHeap ); | 1406 free( pHeap ); |
| 1407 return 0; | 1407 return 0; |
| 1408 } | 1408 } |
| OLD | NEW |