diff options
author | drh <drh@noemail.net> | 2007-05-12 12:08:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-05-12 12:08:51 +0000 |
commit | cf1be45fe2697dba9a8f9075ab78e354337923a0 (patch) | |
tree | fa30187a38c520942957f1c12a681da7f87bf13e /src/sqliteInt.h | |
parent | 39c9604a02179779d34591305d2cfc0a0a91c5d3 (diff) | |
download | sqlite-cf1be45fe2697dba9a8f9075ab78e354337923a0.tar.gz sqlite-cf1be45fe2697dba9a8f9075ab78e354337923a0.zip |
Make the ANALYZE command robust in the face of malloc() failures. (CVS 3989)
FossilOrigin-Name: c08658e1f8598941ebddddb98942b98cfcb86e7a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b227f6a75..a550ca8ab 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.565 2007/05/11 12:30:04 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.566 2007/05/12 12:08:51 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1804,7 +1804,7 @@ char sqlite3AffinityType(const Token*); void sqlite3Analyze(Parse*, Token*, Token*); int sqlite3InvokeBusyHandler(BusyHandler*); int sqlite3FindDb(sqlite3*, Token*); -void sqlite3AnalysisLoad(sqlite3*,int iDB); +int sqlite3AnalysisLoad(sqlite3*,int iDB); void sqlite3DefaultRowEst(Index*); void sqlite3RegisterLikeFunctions(sqlite3*, int); int sqlite3IsLikeFunction(sqlite3*,Expr*,int*,char*); |