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
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index cb6b119..00867d1 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 @@
 char sqlite3AffinityType(const Token*);
 void sqlite3Analyze(Parse*, Token*, Token*);
 int sqlite3InvokeBusyHandler(BusyHandler*);
+int sqlite3FindDb(sqlite3*, Token*);
 
 #ifdef SQLITE_SSE
 #include "sseInt.h"