Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: third_party/sqlite/src/test/speedtest1.c

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698