diff options
author | dan <dan@noemail.net> | 2017-11-18 17:30:08 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2017-11-18 17:30:08 +0000 |
commit | eebf2f5747182c8a46e4eb58fc9e8dc2567ed2cf (patch) | |
tree | 96f17913a76646b6cee1921f1d48e1712dffa406 /src/sqliteInt.h | |
parent | 2410243e9d27b5f1f5862368eb52ded8898250d8 (diff) | |
download | sqlite-eebf2f5747182c8a46e4eb58fc9e8dc2567ed2cf.tar.gz sqlite-eebf2f5747182c8a46e4eb58fc9e8dc2567ed2cf.zip |
Enhance the log messages produced in some cases if database corruption is
encountered by an SQLITE_DEBUG build.
FossilOrigin-Name: 23a3128083834b5fc80adf45448f7dc65587c52761fb3c9483b80313b369406f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 058fee146..c4e3a7dab 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3431,6 +3431,7 @@ struct TreeView { ** using sqlite3_log(). The routines also provide a convenient place ** to set a debugger breakpoint. */ +int sqlite3ReportError(int iErr, int lineno, const char *zType); int sqlite3CorruptError(int); int sqlite3MisuseError(int); int sqlite3CantopenError(int); |