Overview
Comment: | Simplified error message on the showdb utility. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 8e0ced1af78d8c25a06423a8e7e337ac845155cc |
User & Date: | drh 2013-03-05 01:46:26 |
Context
2013-03-05
| ||
11:27 | Fix a bug in the recent incremental-vacuum related changes. check-in: 717863fc user: dan tags: trunk | |
01:46 | Simplified error message on the showdb utility. check-in: 8e0ced1a user: drh tags: trunk | |
2013-03-04
| ||
17:41 | Omit a test that uses the progress handler callback from view.test if OMIT_PROGRESS_HANDLER is defined. check-in: f40552ad user: dan tags: trunk | |
Changes
Changes to tool/showdb.c.
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
va_list ap;
char *zMsg;
va_start(ap, zFormat);
zMsg = sqlite3_vmprintf(zFormat, ap);
va_end(ap);
if( pgno<=0 || pgno>mxPage ){
printf("ERROR: page %d out of bounds. Range=1..%d. Msg: %s\n",
pgno, mxPage, zMsg);
sqlite3_free(zMsg);
return;
}
if( zPageUse[pgno]!=0 ){
printf("ERROR: page %d used multiple times:\n", pgno);
printf("ERROR: previous: %s\n", zPageUse[pgno]);
|
| |
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
va_list ap;
char *zMsg;
va_start(ap, zFormat);
zMsg = sqlite3_vmprintf(zFormat, ap);
va_end(ap);
if( pgno<=0 || pgno>mxPage ){
printf("ERROR: page %d out of range 1..%d: %s\n",
pgno, mxPage, zMsg);
sqlite3_free(zMsg);
return;
}
if( zPageUse[pgno]!=0 ){
printf("ERROR: page %d used multiple times:\n", pgno);
printf("ERROR: previous: %s\n", zPageUse[pgno]);
|