diff options
author | drh <drh@noemail.net> | 2005-07-23 00:41:48 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-07-23 00:41:48 +0000 |
commit | ff2d5ea4081b769e40d021527e9836b224f357ad (patch) | |
tree | 70681311b8c25280aaf5b4ac9eb1a6ce6c216db8 /src/sqliteInt.h | |
parent | d00ada9a00e96f5101608199869cafcf4df17197 (diff) | |
download | sqlite-ff2d5ea4081b769e40d021527e9836b224f357ad.tar.gz sqlite-ff2d5ea4081b769e40d021527e9836b224f357ad.zip |
First code for the ANALYZE command. Mostly untested. The analysis is
not loaded into the symbol tables and is not used by the optimizer. (CVS 2560)
FossilOrigin-Name: a4886b114d2ccb3841d3d219f6b97f67745b13c2
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 cb6b1194b..00867d18b 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.397 2005/07/22 00:31:40 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.398 2005/07/23 00:41:49 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1569,6 +1569,7 @@ CollSeq *sqlite3GetCollSeq(sqlite3*, CollSeq *, const char *, int); char sqlite3AffinityType(const Token*); void sqlite3Analyze(Parse*, Token*, Token*); int sqlite3InvokeBusyHandler(BusyHandler*); +int sqlite3FindDb(sqlite3*, Token*); #ifdef SQLITE_SSE #include "sseInt.h" |