os/persistentdata/persistentstorage/sql/SQLite/analyze.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
** 2005 July 8
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This file contains code associated with the ANALYZE command.
sl@0
    13
**
sl@0
    14
** @(#) $Id: analyze.c,v 1.43 2008/07/28 19:34:53 drh Exp $
sl@0
    15
*/
sl@0
    16
#ifndef SQLITE_OMIT_ANALYZE
sl@0
    17
#include "sqliteInt.h"
sl@0
    18
sl@0
    19
/*
sl@0
    20
** This routine generates code that opens the sqlite_stat1 table on cursor
sl@0
    21
** iStatCur.
sl@0
    22
**
sl@0
    23
** If the sqlite_stat1 tables does not previously exist, it is created.
sl@0
    24
** If it does previously exist, all entires associated with table zWhere
sl@0
    25
** are removed.  If zWhere==0 then all entries are removed.
sl@0
    26
*/
sl@0
    27
static void openStatTable(
sl@0
    28
  Parse *pParse,          /* Parsing context */
sl@0
    29
  int iDb,                /* The database we are looking in */
sl@0
    30
  int iStatCur,           /* Open the sqlite_stat1 table on this cursor */
sl@0
    31
  const char *zWhere      /* Delete entries associated with this table */
sl@0
    32
){
sl@0
    33
  sqlite3 *db = pParse->db;
sl@0
    34
  Db *pDb;
sl@0
    35
  int iRootPage;
sl@0
    36
  int createStat1 = 0;
sl@0
    37
  Table *pStat;
sl@0
    38
  Vdbe *v = sqlite3GetVdbe(pParse);
sl@0
    39
sl@0
    40
  if( v==0 ) return;
sl@0
    41
  assert( sqlite3BtreeHoldsAllMutexes(db) );
sl@0
    42
  assert( sqlite3VdbeDb(v)==db );
sl@0
    43
  pDb = &db->aDb[iDb];
sl@0
    44
  if( (pStat = sqlite3FindTable(db, "sqlite_stat1", pDb->zName))==0 ){
sl@0
    45
    /* The sqlite_stat1 tables does not exist.  Create it.  
sl@0
    46
    ** Note that a side-effect of the CREATE TABLE statement is to leave
sl@0
    47
    ** the rootpage of the new table in register pParse->regRoot.  This is
sl@0
    48
    ** important because the OpenWrite opcode below will be needing it. */
sl@0
    49
    sqlite3NestedParse(pParse,
sl@0
    50
      "CREATE TABLE %Q.sqlite_stat1(tbl,idx,stat)",
sl@0
    51
      pDb->zName
sl@0
    52
    );
sl@0
    53
    iRootPage = pParse->regRoot;
sl@0
    54
    createStat1 = 1;  /* Cause rootpage to be taken from top of stack */
sl@0
    55
  }else if( zWhere ){
sl@0
    56
    /* The sqlite_stat1 table exists.  Delete all entries associated with
sl@0
    57
    ** the table zWhere. */
sl@0
    58
    sqlite3NestedParse(pParse,
sl@0
    59
       "DELETE FROM %Q.sqlite_stat1 WHERE tbl=%Q",
sl@0
    60
       pDb->zName, zWhere
sl@0
    61
    );
sl@0
    62
    iRootPage = pStat->tnum;
sl@0
    63
  }else{
sl@0
    64
    /* The sqlite_stat1 table already exists.  Delete all rows. */
sl@0
    65
    iRootPage = pStat->tnum;
sl@0
    66
    sqlite3VdbeAddOp2(v, OP_Clear, pStat->tnum, iDb);
sl@0
    67
  }
sl@0
    68
sl@0
    69
  /* Open the sqlite_stat1 table for writing. Unless it was created
sl@0
    70
  ** by this vdbe program, lock it for writing at the shared-cache level. 
sl@0
    71
  ** If this vdbe did create the sqlite_stat1 table, then it must have 
sl@0
    72
  ** already obtained a schema-lock, making the write-lock redundant.
sl@0
    73
  */
sl@0
    74
  if( !createStat1 ){
sl@0
    75
    sqlite3TableLock(pParse, iDb, iRootPage, 1, "sqlite_stat1");
sl@0
    76
  }
sl@0
    77
  sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, 3);
sl@0
    78
  sqlite3VdbeAddOp3(v, OP_OpenWrite, iStatCur, iRootPage, iDb);
sl@0
    79
  sqlite3VdbeChangeP5(v, createStat1);
sl@0
    80
}
sl@0
    81
sl@0
    82
/*
sl@0
    83
** Generate code to do an analysis of all indices associated with
sl@0
    84
** a single table.
sl@0
    85
*/
sl@0
    86
static void analyzeOneTable(
sl@0
    87
  Parse *pParse,   /* Parser context */
sl@0
    88
  Table *pTab,     /* Table whose indices are to be analyzed */
sl@0
    89
  int iStatCur,    /* Cursor that writes to the sqlite_stat1 table */
sl@0
    90
  int iMem         /* Available memory locations begin here */
sl@0
    91
){
sl@0
    92
  Index *pIdx;     /* An index to being analyzed */
sl@0
    93
  int iIdxCur;     /* Cursor number for index being analyzed */
sl@0
    94
  int nCol;        /* Number of columns in the index */
sl@0
    95
  Vdbe *v;         /* The virtual machine being built up */
sl@0
    96
  int i;           /* Loop counter */
sl@0
    97
  int topOfLoop;   /* The top of the loop */
sl@0
    98
  int endOfLoop;   /* The end of the loop */
sl@0
    99
  int addr;        /* The address of an instruction */
sl@0
   100
  int iDb;         /* Index of database containing pTab */
sl@0
   101
sl@0
   102
  v = sqlite3GetVdbe(pParse);
sl@0
   103
  if( v==0 || pTab==0 || pTab->pIndex==0 ){
sl@0
   104
    /* Do no analysis for tables that have no indices */
sl@0
   105
    return;
sl@0
   106
  }
sl@0
   107
  assert( sqlite3BtreeHoldsAllMutexes(pParse->db) );
sl@0
   108
  iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
sl@0
   109
  assert( iDb>=0 );
sl@0
   110
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   111
  if( sqlite3AuthCheck(pParse, SQLITE_ANALYZE, pTab->zName, 0,
sl@0
   112
      pParse->db->aDb[iDb].zName ) ){
sl@0
   113
    return;
sl@0
   114
  }
sl@0
   115
#endif
sl@0
   116
sl@0
   117
  /* Establish a read-lock on the table at the shared-cache level. */
sl@0
   118
  sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
sl@0
   119
sl@0
   120
  iIdxCur = pParse->nTab;
sl@0
   121
  for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
sl@0
   122
    KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx);
sl@0
   123
    int regFields;    /* Register block for building records */
sl@0
   124
    int regRec;       /* Register holding completed record */
sl@0
   125
    int regTemp;      /* Temporary use register */
sl@0
   126
    int regCol;       /* Content of a column from the table being analyzed */
sl@0
   127
    int regRowid;     /* Rowid for the inserted record */
sl@0
   128
    int regF2;
sl@0
   129
sl@0
   130
    /* Open a cursor to the index to be analyzed
sl@0
   131
    */
sl@0
   132
    assert( iDb==sqlite3SchemaToIndex(pParse->db, pIdx->pSchema) );
sl@0
   133
    nCol = pIdx->nColumn;
sl@0
   134
    sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, nCol+1);
sl@0
   135
    sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb,
sl@0
   136
        (char *)pKey, P4_KEYINFO_HANDOFF);
sl@0
   137
    VdbeComment((v, "%s", pIdx->zName));
sl@0
   138
    regFields = iMem+nCol*2;
sl@0
   139
    regTemp = regRowid = regCol = regFields+3;
sl@0
   140
    regRec = regCol+1;
sl@0
   141
    if( regRec>pParse->nMem ){
sl@0
   142
      pParse->nMem = regRec;
sl@0
   143
    }
sl@0
   144
sl@0
   145
    /* Memory cells are used as follows:
sl@0
   146
    **
sl@0
   147
    **    mem[iMem]:             The total number of rows in the table.
sl@0
   148
    **    mem[iMem+1]:           Number of distinct values in column 1
sl@0
   149
    **    ...
sl@0
   150
    **    mem[iMem+nCol]:        Number of distinct values in column N
sl@0
   151
    **    mem[iMem+nCol+1]       Last observed value of column 1
sl@0
   152
    **    ...
sl@0
   153
    **    mem[iMem+nCol+nCol]:   Last observed value of column N
sl@0
   154
    **
sl@0
   155
    ** Cells iMem through iMem+nCol are initialized to 0.  The others
sl@0
   156
    ** are initialized to NULL.
sl@0
   157
    */
sl@0
   158
    for(i=0; i<=nCol; i++){
sl@0
   159
      sqlite3VdbeAddOp2(v, OP_Integer, 0, iMem+i);
sl@0
   160
    }
sl@0
   161
    for(i=0; i<nCol; i++){
sl@0
   162
      sqlite3VdbeAddOp2(v, OP_Null, 0, iMem+nCol+i+1);
sl@0
   163
    }
sl@0
   164
sl@0
   165
    /* Do the analysis.
sl@0
   166
    */
sl@0
   167
    endOfLoop = sqlite3VdbeMakeLabel(v);
sl@0
   168
    sqlite3VdbeAddOp2(v, OP_Rewind, iIdxCur, endOfLoop);
sl@0
   169
    topOfLoop = sqlite3VdbeCurrentAddr(v);
sl@0
   170
    sqlite3VdbeAddOp2(v, OP_AddImm, iMem, 1);
sl@0
   171
    for(i=0; i<nCol; i++){
sl@0
   172
      sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, regCol);
sl@0
   173
      sqlite3VdbeAddOp3(v, OP_Ne, regCol, 0, iMem+nCol+i+1);
sl@0
   174
      /**** TODO:  add collating sequence *****/
sl@0
   175
      sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
sl@0
   176
    }
sl@0
   177
    sqlite3VdbeAddOp2(v, OP_Goto, 0, endOfLoop);
sl@0
   178
    for(i=0; i<nCol; i++){
sl@0
   179
      sqlite3VdbeJumpHere(v, topOfLoop + 2*(i + 1));
sl@0
   180
      sqlite3VdbeAddOp2(v, OP_AddImm, iMem+i+1, 1);
sl@0
   181
      sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, iMem+nCol+i+1);
sl@0
   182
    }
sl@0
   183
    sqlite3VdbeResolveLabel(v, endOfLoop);
sl@0
   184
    sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, topOfLoop);
sl@0
   185
    sqlite3VdbeAddOp1(v, OP_Close, iIdxCur);
sl@0
   186
sl@0
   187
    /* Store the results.  
sl@0
   188
    **
sl@0
   189
    ** The result is a single row of the sqlite_stat1 table.  The first
sl@0
   190
    ** two columns are the names of the table and index.  The third column
sl@0
   191
    ** is a string composed of a list of integer statistics about the
sl@0
   192
    ** index.  The first integer in the list is the total number of entires
sl@0
   193
    ** in the index.  There is one additional integer in the list for each
sl@0
   194
    ** column of the table.  This additional integer is a guess of how many
sl@0
   195
    ** rows of the table the index will select.  If D is the count of distinct
sl@0
   196
    ** values and K is the total number of rows, then the integer is computed
sl@0
   197
    ** as:
sl@0
   198
    **
sl@0
   199
    **        I = (K+D-1)/D
sl@0
   200
    **
sl@0
   201
    ** If K==0 then no entry is made into the sqlite_stat1 table.  
sl@0
   202
    ** If K>0 then it is always the case the D>0 so division by zero
sl@0
   203
    ** is never possible.
sl@0
   204
    */
sl@0
   205
    addr = sqlite3VdbeAddOp1(v, OP_IfNot, iMem);
sl@0
   206
    sqlite3VdbeAddOp4(v, OP_String8, 0, regFields, 0, pTab->zName, 0);
sl@0
   207
    sqlite3VdbeAddOp4(v, OP_String8, 0, regFields+1, 0, pIdx->zName, 0);
sl@0
   208
    regF2 = regFields+2;
sl@0
   209
    sqlite3VdbeAddOp2(v, OP_SCopy, iMem, regF2);
sl@0
   210
    for(i=0; i<nCol; i++){
sl@0
   211
      sqlite3VdbeAddOp4(v, OP_String8, 0, regTemp, 0, " ", 0);
sl@0
   212
      sqlite3VdbeAddOp3(v, OP_Concat, regTemp, regF2, regF2);
sl@0
   213
      sqlite3VdbeAddOp3(v, OP_Add, iMem, iMem+i+1, regTemp);
sl@0
   214
      sqlite3VdbeAddOp2(v, OP_AddImm, regTemp, -1);
sl@0
   215
      sqlite3VdbeAddOp3(v, OP_Divide, iMem+i+1, regTemp, regTemp);
sl@0
   216
      sqlite3VdbeAddOp1(v, OP_ToInt, regTemp);
sl@0
   217
      sqlite3VdbeAddOp3(v, OP_Concat, regTemp, regF2, regF2);
sl@0
   218
    }
sl@0
   219
    sqlite3VdbeAddOp4(v, OP_MakeRecord, regFields, 3, regRec, "aaa", 0);
sl@0
   220
    sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regRowid);
sl@0
   221
    sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regRec, regRowid);
sl@0
   222
    sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
sl@0
   223
    sqlite3VdbeJumpHere(v, addr);
sl@0
   224
  }
sl@0
   225
}
sl@0
   226
sl@0
   227
/*
sl@0
   228
** Generate code that will cause the most recent index analysis to
sl@0
   229
** be laoded into internal hash tables where is can be used.
sl@0
   230
*/
sl@0
   231
static void loadAnalysis(Parse *pParse, int iDb){
sl@0
   232
  Vdbe *v = sqlite3GetVdbe(pParse);
sl@0
   233
  if( v ){
sl@0
   234
    sqlite3VdbeAddOp1(v, OP_LoadAnalysis, iDb);
sl@0
   235
  }
sl@0
   236
}
sl@0
   237
sl@0
   238
/*
sl@0
   239
** Generate code that will do an analysis of an entire database
sl@0
   240
*/
sl@0
   241
static void analyzeDatabase(Parse *pParse, int iDb){
sl@0
   242
  sqlite3 *db = pParse->db;
sl@0
   243
  Schema *pSchema = db->aDb[iDb].pSchema;    /* Schema of database iDb */
sl@0
   244
  HashElem *k;
sl@0
   245
  int iStatCur;
sl@0
   246
  int iMem;
sl@0
   247
sl@0
   248
  sqlite3BeginWriteOperation(pParse, 0, iDb);
sl@0
   249
  iStatCur = pParse->nTab++;
sl@0
   250
  openStatTable(pParse, iDb, iStatCur, 0);
sl@0
   251
  iMem = pParse->nMem+1;
sl@0
   252
  for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){
sl@0
   253
    Table *pTab = (Table*)sqliteHashData(k);
sl@0
   254
    analyzeOneTable(pParse, pTab, iStatCur, iMem);
sl@0
   255
  }
sl@0
   256
  loadAnalysis(pParse, iDb);
sl@0
   257
}
sl@0
   258
sl@0
   259
/*
sl@0
   260
** Generate code that will do an analysis of a single table in
sl@0
   261
** a database.
sl@0
   262
*/
sl@0
   263
static void analyzeTable(Parse *pParse, Table *pTab){
sl@0
   264
  int iDb;
sl@0
   265
  int iStatCur;
sl@0
   266
sl@0
   267
  assert( pTab!=0 );
sl@0
   268
  assert( sqlite3BtreeHoldsAllMutexes(pParse->db) );
sl@0
   269
  iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
sl@0
   270
  sqlite3BeginWriteOperation(pParse, 0, iDb);
sl@0
   271
  iStatCur = pParse->nTab++;
sl@0
   272
  openStatTable(pParse, iDb, iStatCur, pTab->zName);
sl@0
   273
  analyzeOneTable(pParse, pTab, iStatCur, pParse->nMem+1);
sl@0
   274
  loadAnalysis(pParse, iDb);
sl@0
   275
}
sl@0
   276
sl@0
   277
/*
sl@0
   278
** Generate code for the ANALYZE command.  The parser calls this routine
sl@0
   279
** when it recognizes an ANALYZE command.
sl@0
   280
**
sl@0
   281
**        ANALYZE                            -- 1
sl@0
   282
**        ANALYZE  <database>                -- 2
sl@0
   283
**        ANALYZE  ?<database>.?<tablename>  -- 3
sl@0
   284
**
sl@0
   285
** Form 1 causes all indices in all attached databases to be analyzed.
sl@0
   286
** Form 2 analyzes all indices the single database named.
sl@0
   287
** Form 3 analyzes all indices associated with the named table.
sl@0
   288
*/
sl@0
   289
void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){
sl@0
   290
  sqlite3 *db = pParse->db;
sl@0
   291
  int iDb;
sl@0
   292
  int i;
sl@0
   293
  char *z, *zDb;
sl@0
   294
  Table *pTab;
sl@0
   295
  Token *pTableName;
sl@0
   296
sl@0
   297
  /* Read the database schema. If an error occurs, leave an error message
sl@0
   298
  ** and code in pParse and return NULL. */
sl@0
   299
  assert( sqlite3BtreeHoldsAllMutexes(pParse->db) );
sl@0
   300
  if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){
sl@0
   301
    return;
sl@0
   302
  }
sl@0
   303
sl@0
   304
  if( pName1==0 ){
sl@0
   305
    /* Form 1:  Analyze everything */
sl@0
   306
    for(i=0; i<db->nDb; i++){
sl@0
   307
      if( i==1 ) continue;  /* Do not analyze the TEMP database */
sl@0
   308
      analyzeDatabase(pParse, i);
sl@0
   309
    }
sl@0
   310
  }else if( pName2==0 || pName2->n==0 ){
sl@0
   311
    /* Form 2:  Analyze the database or table named */
sl@0
   312
    iDb = sqlite3FindDb(db, pName1);
sl@0
   313
    if( iDb>=0 ){
sl@0
   314
      analyzeDatabase(pParse, iDb);
sl@0
   315
    }else{
sl@0
   316
      z = sqlite3NameFromToken(db, pName1);
sl@0
   317
      if( z ){
sl@0
   318
        pTab = sqlite3LocateTable(pParse, 0, z, 0);
sl@0
   319
        sqlite3DbFree(db, z);
sl@0
   320
        if( pTab ){
sl@0
   321
          analyzeTable(pParse, pTab);
sl@0
   322
        }
sl@0
   323
      }
sl@0
   324
    }
sl@0
   325
  }else{
sl@0
   326
    /* Form 3: Analyze the fully qualified table name */
sl@0
   327
    iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName);
sl@0
   328
    if( iDb>=0 ){
sl@0
   329
      zDb = db->aDb[iDb].zName;
sl@0
   330
      z = sqlite3NameFromToken(db, pTableName);
sl@0
   331
      if( z ){
sl@0
   332
        pTab = sqlite3LocateTable(pParse, 0, z, zDb);
sl@0
   333
        sqlite3DbFree(db, z);
sl@0
   334
        if( pTab ){
sl@0
   335
          analyzeTable(pParse, pTab);
sl@0
   336
        }
sl@0
   337
      }
sl@0
   338
    }   
sl@0
   339
  }
sl@0
   340
}
sl@0
   341
sl@0
   342
/*
sl@0
   343
** Used to pass information from the analyzer reader through to the
sl@0
   344
** callback routine.
sl@0
   345
*/
sl@0
   346
typedef struct analysisInfo analysisInfo;
sl@0
   347
struct analysisInfo {
sl@0
   348
  sqlite3 *db;
sl@0
   349
  const char *zDatabase;
sl@0
   350
};
sl@0
   351
sl@0
   352
/*
sl@0
   353
** This callback is invoked once for each index when reading the
sl@0
   354
** sqlite_stat1 table.  
sl@0
   355
**
sl@0
   356
**     argv[0] = name of the index
sl@0
   357
**     argv[1] = results of analysis - on integer for each column
sl@0
   358
*/
sl@0
   359
static int analysisLoader(void *pData, int argc, char **argv, char **azNotUsed){
sl@0
   360
  analysisInfo *pInfo = (analysisInfo*)pData;
sl@0
   361
  Index *pIndex;
sl@0
   362
  int i, c;
sl@0
   363
  unsigned int v;
sl@0
   364
  const char *z;
sl@0
   365
sl@0
   366
  assert( argc==2 );
sl@0
   367
  if( argv==0 || argv[0]==0 || argv[1]==0 ){
sl@0
   368
    return 0;
sl@0
   369
  }
sl@0
   370
  pIndex = sqlite3FindIndex(pInfo->db, argv[0], pInfo->zDatabase);
sl@0
   371
  if( pIndex==0 ){
sl@0
   372
    return 0;
sl@0
   373
  }
sl@0
   374
  z = argv[1];
sl@0
   375
  for(i=0; *z && i<=pIndex->nColumn; i++){
sl@0
   376
    v = 0;
sl@0
   377
    while( (c=z[0])>='0' && c<='9' ){
sl@0
   378
      v = v*10 + c - '0';
sl@0
   379
      z++;
sl@0
   380
    }
sl@0
   381
    pIndex->aiRowEst[i] = v;
sl@0
   382
    if( *z==' ' ) z++;
sl@0
   383
  }
sl@0
   384
  return 0;
sl@0
   385
}
sl@0
   386
sl@0
   387
/*
sl@0
   388
** Load the content of the sqlite_stat1 table into the index hash tables.
sl@0
   389
*/
sl@0
   390
int sqlite3AnalysisLoad(sqlite3 *db, int iDb){
sl@0
   391
  analysisInfo sInfo;
sl@0
   392
  HashElem *i;
sl@0
   393
  char *zSql;
sl@0
   394
  int rc;
sl@0
   395
sl@0
   396
  assert( iDb>=0 && iDb<db->nDb );
sl@0
   397
  assert( db->aDb[iDb].pBt!=0 );
sl@0
   398
  assert( sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) );
sl@0
   399
sl@0
   400
  /* Clear any prior statistics */
sl@0
   401
  for(i=sqliteHashFirst(&db->aDb[iDb].pSchema->idxHash);i;i=sqliteHashNext(i)){
sl@0
   402
    Index *pIdx = sqliteHashData(i);
sl@0
   403
    sqlite3DefaultRowEst(pIdx);
sl@0
   404
  }
sl@0
   405
sl@0
   406
  /* Check to make sure the sqlite_stat1 table existss */
sl@0
   407
  sInfo.db = db;
sl@0
   408
  sInfo.zDatabase = db->aDb[iDb].zName;
sl@0
   409
  if( sqlite3FindTable(db, "sqlite_stat1", sInfo.zDatabase)==0 ){
sl@0
   410
     return SQLITE_ERROR;
sl@0
   411
  }
sl@0
   412
sl@0
   413
sl@0
   414
  /* Load new statistics out of the sqlite_stat1 table */
sl@0
   415
  zSql = sqlite3MPrintf(db, "SELECT idx, stat FROM %Q.sqlite_stat1",
sl@0
   416
                        sInfo.zDatabase);
sl@0
   417
  (void)sqlite3SafetyOff(db);
sl@0
   418
  rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0);
sl@0
   419
  (void)sqlite3SafetyOn(db);
sl@0
   420
  sqlite3DbFree(db, zSql);
sl@0
   421
  return rc;
sl@0
   422
}
sl@0
   423
sl@0
   424
sl@0
   425
#endif /* SQLITE_OMIT_ANALYZE */