diff options
author | drh <drh@noemail.net> | 2002-05-10 13:14:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-05-10 13:14:07 +0000 |
commit | c22bd47d55ec97e18614af191cacfedaf7572ee9 (patch) | |
tree | a6aa0ae4a13d5b91f51fee9c9e7c3d1b55900049 /src/sqliteInt.h | |
parent | 247be43d606204ef5ae0fc0173298670b5277742 (diff) | |
download | sqlite-c22bd47d55ec97e18614af191cacfedaf7572ee9.tar.gz sqlite-c22bd47d55ec97e18614af191cacfedaf7572ee9.zip |
Improvements to the SQLITE_MISUSE detection logic. Also added test cases
for this logic, including the new test file "misuse.test". (CVS 559)
FossilOrigin-Name: f42907ce457e012592f8c043dc6c915e87258b35
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index fbdb47dc9..f8251bbd1 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.106 2002/05/10 05:44:56 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.107 2002/05/10 13:14:07 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -661,3 +661,4 @@ FuncDef *sqliteFindFunction(sqlite*,const char*,int,int,int); void sqliteRegisterBuildinFunctions(sqlite*); int sqliteSafetyOn(sqlite*); int sqliteSafetyOff(sqlite*); +int sqliteSafetyCheck(sqlite*); |