1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

The btree.c module now passes all the historical regression tests. New tests

for new functionality still need to be added. (CVS 1342)

FossilOrigin-Name: 433ae0d327e5d5b0761e88418ed57fc4cbf4966b
This commit is contained in:
drh
2004-05-10 16:18:47 +00:00
parent 3dc0b8ebe3
commit 24cd67e732
6 changed files with 103 additions and 41 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test3.c,v 1.33 2004/05/09 20:40:11 drh Exp $
** $Id: test3.c,v 1.34 2004/05/10 16:18:48 drh Exp $
*/
#include "sqliteInt.h"
#include "pager.h"
@@ -43,6 +43,7 @@ static char *errorName(int rc){
case SQLITE_FULL: zName = "SQLITE_FULL"; break;
case SQLITE_CANTOPEN: zName = "SQLITE_CANTOPEN"; break;
case SQLITE_PROTOCOL: zName = "SQLITE_PROTOCOL"; break;
case SQLITE_EMPTY: zName = "SQLITE_EMPTY"; break;
default: zName = "SQLITE_Unknown"; break;
}
return zName;