os/persistentdata/persistentstorage/sql/SQLite/build.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/build.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,3497 @@
     1.4 +/*
     1.5 +** 2001 September 15
     1.6 +**
     1.7 +** The author disclaims copyright to this source code.  In place of
     1.8 +** a legal notice, here is a blessing:
     1.9 +**
    1.10 +**    May you do good and not evil.
    1.11 +**    May you find forgiveness for yourself and forgive others.
    1.12 +**    May you share freely, never taking more than you give.
    1.13 +**
    1.14 +*************************************************************************
    1.15 +** This file contains C code routines that are called by the SQLite parser
    1.16 +** when syntax rules are reduced.  The routines in this file handle the
    1.17 +** following kinds of SQL syntax:
    1.18 +**
    1.19 +**     CREATE TABLE
    1.20 +**     DROP TABLE
    1.21 +**     CREATE INDEX
    1.22 +**     DROP INDEX
    1.23 +**     creating ID lists
    1.24 +**     BEGIN TRANSACTION
    1.25 +**     COMMIT
    1.26 +**     ROLLBACK
    1.27 +**
    1.28 +** $Id: build.c,v 1.493 2008/08/04 04:39:49 danielk1977 Exp $
    1.29 +*/
    1.30 +#include "sqliteInt.h"
    1.31 +#include <ctype.h>
    1.32 +
    1.33 +/*
    1.34 +** This routine is called when a new SQL statement is beginning to
    1.35 +** be parsed.  Initialize the pParse structure as needed.
    1.36 +*/
    1.37 +void sqlite3BeginParse(Parse *pParse, int explainFlag){
    1.38 +  pParse->explain = explainFlag;
    1.39 +  pParse->nVar = 0;
    1.40 +}
    1.41 +
    1.42 +#ifndef SQLITE_OMIT_SHARED_CACHE
    1.43 +/*
    1.44 +** The TableLock structure is only used by the sqlite3TableLock() and
    1.45 +** codeTableLocks() functions.
    1.46 +*/
    1.47 +struct TableLock {
    1.48 +  int iDb;             /* The database containing the table to be locked */
    1.49 +  int iTab;            /* The root page of the table to be locked */
    1.50 +  u8 isWriteLock;      /* True for write lock.  False for a read lock */
    1.51 +  const char *zName;   /* Name of the table */
    1.52 +};
    1.53 +
    1.54 +/*
    1.55 +** Record the fact that we want to lock a table at run-time.  
    1.56 +**
    1.57 +** The table to be locked has root page iTab and is found in database iDb.
    1.58 +** A read or a write lock can be taken depending on isWritelock.
    1.59 +**
    1.60 +** This routine just records the fact that the lock is desired.  The
    1.61 +** code to make the lock occur is generated by a later call to
    1.62 +** codeTableLocks() which occurs during sqlite3FinishCoding().
    1.63 +*/
    1.64 +void sqlite3TableLock(
    1.65 +  Parse *pParse,     /* Parsing context */
    1.66 +  int iDb,           /* Index of the database containing the table to lock */
    1.67 +  int iTab,          /* Root page number of the table to be locked */
    1.68 +  u8 isWriteLock,    /* True for a write lock */
    1.69 +  const char *zName  /* Name of the table to be locked */
    1.70 +){
    1.71 +  int i;
    1.72 +  int nBytes;
    1.73 +  TableLock *p;
    1.74 +
    1.75 +  if( iDb<0 ){
    1.76 +    return;
    1.77 +  }
    1.78 +
    1.79 +  for(i=0; i<pParse->nTableLock; i++){
    1.80 +    p = &pParse->aTableLock[i];
    1.81 +    if( p->iDb==iDb && p->iTab==iTab ){
    1.82 +      p->isWriteLock = (p->isWriteLock || isWriteLock);
    1.83 +      return;
    1.84 +    }
    1.85 +  }
    1.86 +
    1.87 +  nBytes = sizeof(TableLock) * (pParse->nTableLock+1);
    1.88 +  pParse->aTableLock = 
    1.89 +      sqlite3DbReallocOrFree(pParse->db, pParse->aTableLock, nBytes);
    1.90 +  if( pParse->aTableLock ){
    1.91 +    p = &pParse->aTableLock[pParse->nTableLock++];
    1.92 +    p->iDb = iDb;
    1.93 +    p->iTab = iTab;
    1.94 +    p->isWriteLock = isWriteLock;
    1.95 +    p->zName = zName;
    1.96 +  }else{
    1.97 +    pParse->nTableLock = 0;
    1.98 +    pParse->db->mallocFailed = 1;
    1.99 +  }
   1.100 +}
   1.101 +
   1.102 +/*
   1.103 +** Code an OP_TableLock instruction for each table locked by the
   1.104 +** statement (configured by calls to sqlite3TableLock()).
   1.105 +*/
   1.106 +static void codeTableLocks(Parse *pParse){
   1.107 +  int i;
   1.108 +  Vdbe *pVdbe; 
   1.109 +
   1.110 +  if( 0==(pVdbe = sqlite3GetVdbe(pParse)) ){
   1.111 +    return;
   1.112 +  }
   1.113 +
   1.114 +  for(i=0; i<pParse->nTableLock; i++){
   1.115 +    TableLock *p = &pParse->aTableLock[i];
   1.116 +    int p1 = p->iDb;
   1.117 +    sqlite3VdbeAddOp4(pVdbe, OP_TableLock, p1, p->iTab, p->isWriteLock,
   1.118 +                      p->zName, P4_STATIC);
   1.119 +  }
   1.120 +}
   1.121 +#else
   1.122 +  #define codeTableLocks(x)
   1.123 +#endif
   1.124 +
   1.125 +/*
   1.126 +** This routine is called after a single SQL statement has been
   1.127 +** parsed and a VDBE program to execute that statement has been
   1.128 +** prepared.  This routine puts the finishing touches on the
   1.129 +** VDBE program and resets the pParse structure for the next
   1.130 +** parse.
   1.131 +**
   1.132 +** Note that if an error occurred, it might be the case that
   1.133 +** no VDBE code was generated.
   1.134 +*/
   1.135 +void sqlite3FinishCoding(Parse *pParse){
   1.136 +  sqlite3 *db;
   1.137 +  Vdbe *v;
   1.138 +
   1.139 +  db = pParse->db;
   1.140 +  if( db->mallocFailed ) return;
   1.141 +  if( pParse->nested ) return;
   1.142 +  if( pParse->nErr ) return;
   1.143 +
   1.144 +  /* Begin by generating some termination code at the end of the
   1.145 +  ** vdbe program
   1.146 +  */
   1.147 +  v = sqlite3GetVdbe(pParse);
   1.148 +  if( v ){
   1.149 +    sqlite3VdbeAddOp0(v, OP_Halt);
   1.150 +
   1.151 +    /* The cookie mask contains one bit for each database file open.
   1.152 +    ** (Bit 0 is for main, bit 1 is for temp, and so forth.)  Bits are
   1.153 +    ** set for each database that is used.  Generate code to start a
   1.154 +    ** transaction on each used database and to verify the schema cookie
   1.155 +    ** on each used database.
   1.156 +    */
   1.157 +    if( pParse->cookieGoto>0 ){
   1.158 +      u32 mask;
   1.159 +      int iDb;
   1.160 +      sqlite3VdbeJumpHere(v, pParse->cookieGoto-1);
   1.161 +      for(iDb=0, mask=1; iDb<db->nDb; mask<<=1, iDb++){
   1.162 +        if( (mask & pParse->cookieMask)==0 ) continue;
   1.163 +        sqlite3VdbeUsesBtree(v, iDb);
   1.164 +        sqlite3VdbeAddOp2(v,OP_Transaction, iDb, (mask & pParse->writeMask)!=0);
   1.165 +        sqlite3VdbeAddOp2(v,OP_VerifyCookie, iDb, pParse->cookieValue[iDb]);
   1.166 +      }
   1.167 +#ifndef SQLITE_OMIT_VIRTUALTABLE
   1.168 +      {
   1.169 +        int i;
   1.170 +        for(i=0; i<pParse->nVtabLock; i++){
   1.171 +          char *vtab = (char *)pParse->apVtabLock[i]->pVtab;
   1.172 +          sqlite3VdbeAddOp4(v, OP_VBegin, 0, 0, 0, vtab, P4_VTAB);
   1.173 +        }
   1.174 +        pParse->nVtabLock = 0;
   1.175 +      }
   1.176 +#endif
   1.177 +
   1.178 +      /* Once all the cookies have been verified and transactions opened, 
   1.179 +      ** obtain the required table-locks. This is a no-op unless the 
   1.180 +      ** shared-cache feature is enabled.
   1.181 +      */
   1.182 +      codeTableLocks(pParse);
   1.183 +      sqlite3VdbeAddOp2(v, OP_Goto, 0, pParse->cookieGoto);
   1.184 +    }
   1.185 +
   1.186 +#ifndef SQLITE_OMIT_TRACE
   1.187 +    if( !db->init.busy ){
   1.188 +      /* Change the P4 argument of the first opcode (which will always be
   1.189 +      ** an OP_Trace) to be the complete text of the current SQL statement.
   1.190 +      */
   1.191 +      VdbeOp *pOp = sqlite3VdbeGetOp(v, 0);
   1.192 +      if( pOp && pOp->opcode==OP_Trace ){
   1.193 +        sqlite3VdbeChangeP4(v, 0, pParse->zSql, pParse->zTail-pParse->zSql);
   1.194 +      }
   1.195 +    }
   1.196 +#endif /* SQLITE_OMIT_TRACE */
   1.197 +  }
   1.198 +
   1.199 +
   1.200 +  /* Get the VDBE program ready for execution
   1.201 +  */
   1.202 +  if( v && pParse->nErr==0 && !db->mallocFailed ){
   1.203 +#ifdef SQLITE_DEBUG
   1.204 +    FILE *trace = (db->flags & SQLITE_VdbeTrace)!=0 ? stdout : 0;
   1.205 +    sqlite3VdbeTrace(v, trace);
   1.206 +#endif
   1.207 +    assert( pParse->disableColCache==0 );  /* Disables and re-enables match */
   1.208 +    sqlite3VdbeMakeReady(v, pParse->nVar, pParse->nMem+3,
   1.209 +                         pParse->nTab+3, pParse->explain);
   1.210 +    pParse->rc = SQLITE_DONE;
   1.211 +    pParse->colNamesSet = 0;
   1.212 +  }else if( pParse->rc==SQLITE_OK ){
   1.213 +    pParse->rc = SQLITE_ERROR;
   1.214 +  }
   1.215 +  pParse->nTab = 0;
   1.216 +  pParse->nMem = 0;
   1.217 +  pParse->nSet = 0;
   1.218 +  pParse->nVar = 0;
   1.219 +  pParse->cookieMask = 0;
   1.220 +  pParse->cookieGoto = 0;
   1.221 +}
   1.222 +
   1.223 +/*
   1.224 +** Run the parser and code generator recursively in order to generate
   1.225 +** code for the SQL statement given onto the end of the pParse context
   1.226 +** currently under construction.  When the parser is run recursively
   1.227 +** this way, the final OP_Halt is not appended and other initialization
   1.228 +** and finalization steps are omitted because those are handling by the
   1.229 +** outermost parser.
   1.230 +**
   1.231 +** Not everything is nestable.  This facility is designed to permit
   1.232 +** INSERT, UPDATE, and DELETE operations against SQLITE_MASTER.  Use
   1.233 +** care if you decide to try to use this routine for some other purposes.
   1.234 +*/
   1.235 +void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){
   1.236 +  va_list ap;
   1.237 +  char *zSql;
   1.238 +  char *zErrMsg = 0;
   1.239 +  sqlite3 *db = pParse->db;
   1.240 +# define SAVE_SZ  (sizeof(Parse) - offsetof(Parse,nVar))
   1.241 +  char saveBuf[SAVE_SZ];
   1.242 +
   1.243 +  if( pParse->nErr ) return;
   1.244 +  assert( pParse->nested<10 );  /* Nesting should only be of limited depth */
   1.245 +  va_start(ap, zFormat);
   1.246 +  zSql = sqlite3VMPrintf(db, zFormat, ap);
   1.247 +  va_end(ap);
   1.248 +  if( zSql==0 ){
   1.249 +    return;   /* A malloc must have failed */
   1.250 +  }
   1.251 +  pParse->nested++;
   1.252 +  memcpy(saveBuf, &pParse->nVar, SAVE_SZ);
   1.253 +  memset(&pParse->nVar, 0, SAVE_SZ);
   1.254 +  sqlite3RunParser(pParse, zSql, &zErrMsg);
   1.255 +  sqlite3DbFree(db, zErrMsg);
   1.256 +  sqlite3DbFree(db, zSql);
   1.257 +  memcpy(&pParse->nVar, saveBuf, SAVE_SZ);
   1.258 +  pParse->nested--;
   1.259 +}
   1.260 +
   1.261 +/*
   1.262 +** Locate the in-memory structure that describes a particular database
   1.263 +** table given the name of that table and (optionally) the name of the
   1.264 +** database containing the table.  Return NULL if not found.
   1.265 +**
   1.266 +** If zDatabase is 0, all databases are searched for the table and the
   1.267 +** first matching table is returned.  (No checking for duplicate table
   1.268 +** names is done.)  The search order is TEMP first, then MAIN, then any
   1.269 +** auxiliary databases added using the ATTACH command.
   1.270 +**
   1.271 +** See also sqlite3LocateTable().
   1.272 +*/
   1.273 +Table *sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase){
   1.274 +  Table *p = 0;
   1.275 +  int i;
   1.276 +  int nName;
   1.277 +  assert( zName!=0 );
   1.278 +  nName = sqlite3Strlen(db, zName) + 1;
   1.279 +  for(i=OMIT_TEMPDB; i<db->nDb; i++){
   1.280 +    int j = (i<2) ? i^1 : i;   /* Search TEMP before MAIN */
   1.281 +    if( zDatabase!=0 && sqlite3StrICmp(zDatabase, db->aDb[j].zName) ) continue;
   1.282 +    p = sqlite3HashFind(&db->aDb[j].pSchema->tblHash, zName, nName);
   1.283 +    if( p ) break;
   1.284 +  }
   1.285 +  return p;
   1.286 +}
   1.287 +
   1.288 +/*
   1.289 +** Locate the in-memory structure that describes a particular database
   1.290 +** table given the name of that table and (optionally) the name of the
   1.291 +** database containing the table.  Return NULL if not found.  Also leave an
   1.292 +** error message in pParse->zErrMsg.
   1.293 +**
   1.294 +** The difference between this routine and sqlite3FindTable() is that this
   1.295 +** routine leaves an error message in pParse->zErrMsg where
   1.296 +** sqlite3FindTable() does not.
   1.297 +*/
   1.298 +Table *sqlite3LocateTable(
   1.299 +  Parse *pParse,         /* context in which to report errors */
   1.300 +  int isView,            /* True if looking for a VIEW rather than a TABLE */
   1.301 +  const char *zName,     /* Name of the table we are looking for */
   1.302 +  const char *zDbase     /* Name of the database.  Might be NULL */
   1.303 +){
   1.304 +  Table *p;
   1.305 +
   1.306 +  /* Read the database schema. If an error occurs, leave an error message
   1.307 +  ** and code in pParse and return NULL. */
   1.308 +  if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){
   1.309 +    return 0;
   1.310 +  }
   1.311 +
   1.312 +  p = sqlite3FindTable(pParse->db, zName, zDbase);
   1.313 +  if( p==0 ){
   1.314 +    const char *zMsg = isView ? "no such view" : "no such table";
   1.315 +    if( zDbase ){
   1.316 +      sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName);
   1.317 +    }else{
   1.318 +      sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName);
   1.319 +    }
   1.320 +    pParse->checkSchema = 1;
   1.321 +  }
   1.322 +  return p;
   1.323 +}
   1.324 +
   1.325 +/*
   1.326 +** Locate the in-memory structure that describes 
   1.327 +** a particular index given the name of that index
   1.328 +** and the name of the database that contains the index.
   1.329 +** Return NULL if not found.
   1.330 +**
   1.331 +** If zDatabase is 0, all databases are searched for the
   1.332 +** table and the first matching index is returned.  (No checking
   1.333 +** for duplicate index names is done.)  The search order is
   1.334 +** TEMP first, then MAIN, then any auxiliary databases added
   1.335 +** using the ATTACH command.
   1.336 +*/
   1.337 +Index *sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb){
   1.338 +  Index *p = 0;
   1.339 +  int i;
   1.340 +  int nName = sqlite3Strlen(db, zName)+1;
   1.341 +  for(i=OMIT_TEMPDB; i<db->nDb; i++){
   1.342 +    int j = (i<2) ? i^1 : i;  /* Search TEMP before MAIN */
   1.343 +    Schema *pSchema = db->aDb[j].pSchema;
   1.344 +    if( zDb && sqlite3StrICmp(zDb, db->aDb[j].zName) ) continue;
   1.345 +    assert( pSchema || (j==1 && !db->aDb[1].pBt) );
   1.346 +    if( pSchema ){
   1.347 +      p = sqlite3HashFind(&pSchema->idxHash, zName, nName);
   1.348 +    }
   1.349 +    if( p ) break;
   1.350 +  }
   1.351 +  return p;
   1.352 +}
   1.353 +
   1.354 +/*
   1.355 +** Reclaim the memory used by an index
   1.356 +*/
   1.357 +static void freeIndex(Index *p){
   1.358 +  sqlite3 *db = p->pTable->db;
   1.359 +  sqlite3DbFree(db, p->zColAff);
   1.360 +  sqlite3DbFree(db, p);
   1.361 +}
   1.362 +
   1.363 +/*
   1.364 +** Remove the given index from the index hash table, and free
   1.365 +** its memory structures.
   1.366 +**
   1.367 +** The index is removed from the database hash tables but
   1.368 +** it is not unlinked from the Table that it indexes.
   1.369 +** Unlinking from the Table must be done by the calling function.
   1.370 +*/
   1.371 +static void sqliteDeleteIndex(Index *p){
   1.372 +  Index *pOld;
   1.373 +  const char *zName = p->zName;
   1.374 +
   1.375 +  pOld = sqlite3HashInsert(&p->pSchema->idxHash, zName, strlen(zName)+1, 0);
   1.376 +  assert( pOld==0 || pOld==p );
   1.377 +  freeIndex(p);
   1.378 +}
   1.379 +
   1.380 +/*
   1.381 +** For the index called zIdxName which is found in the database iDb,
   1.382 +** unlike that index from its Table then remove the index from
   1.383 +** the index hash table and free all memory structures associated
   1.384 +** with the index.
   1.385 +*/
   1.386 +void sqlite3UnlinkAndDeleteIndex(sqlite3 *db, int iDb, const char *zIdxName){
   1.387 +  Index *pIndex;
   1.388 +  int len;
   1.389 +  Hash *pHash = &db->aDb[iDb].pSchema->idxHash;
   1.390 +
   1.391 +  len = sqlite3Strlen(db, zIdxName);
   1.392 +  pIndex = sqlite3HashInsert(pHash, zIdxName, len+1, 0);
   1.393 +  if( pIndex ){
   1.394 +    if( pIndex->pTable->pIndex==pIndex ){
   1.395 +      pIndex->pTable->pIndex = pIndex->pNext;
   1.396 +    }else{
   1.397 +      Index *p;
   1.398 +      for(p=pIndex->pTable->pIndex; p && p->pNext!=pIndex; p=p->pNext){}
   1.399 +      if( p && p->pNext==pIndex ){
   1.400 +        p->pNext = pIndex->pNext;
   1.401 +      }
   1.402 +    }
   1.403 +    freeIndex(pIndex);
   1.404 +  }
   1.405 +  db->flags |= SQLITE_InternChanges;
   1.406 +}
   1.407 +
   1.408 +/*
   1.409 +** Erase all schema information from the in-memory hash tables of
   1.410 +** a single database.  This routine is called to reclaim memory
   1.411 +** before the database closes.  It is also called during a rollback
   1.412 +** if there were schema changes during the transaction or if a
   1.413 +** schema-cookie mismatch occurs.
   1.414 +**
   1.415 +** If iDb<=0 then reset the internal schema tables for all database
   1.416 +** files.  If iDb>=2 then reset the internal schema for only the
   1.417 +** single file indicated.
   1.418 +*/
   1.419 +void sqlite3ResetInternalSchema(sqlite3 *db, int iDb){
   1.420 +  int i, j;
   1.421 +  assert( iDb>=0 && iDb<db->nDb );
   1.422 +
   1.423 +  if( iDb==0 ){
   1.424 +    sqlite3BtreeEnterAll(db);
   1.425 +  }
   1.426 +  for(i=iDb; i<db->nDb; i++){
   1.427 +    Db *pDb = &db->aDb[i];
   1.428 +    if( pDb->pSchema ){
   1.429 +      assert(i==1 || (pDb->pBt && sqlite3BtreeHoldsMutex(pDb->pBt)));
   1.430 +      sqlite3SchemaFree(pDb->pSchema);
   1.431 +    }
   1.432 +    if( iDb>0 ) return;
   1.433 +  }
   1.434 +  assert( iDb==0 );
   1.435 +  db->flags &= ~SQLITE_InternChanges;
   1.436 +  sqlite3BtreeLeaveAll(db);
   1.437 +
   1.438 +  /* If one or more of the auxiliary database files has been closed,
   1.439 +  ** then remove them from the auxiliary database list.  We take the
   1.440 +  ** opportunity to do this here since we have just deleted all of the
   1.441 +  ** schema hash tables and therefore do not have to make any changes
   1.442 +  ** to any of those tables.
   1.443 +  */
   1.444 +  for(i=0; i<db->nDb; i++){
   1.445 +    struct Db *pDb = &db->aDb[i];
   1.446 +    if( pDb->pBt==0 ){
   1.447 +      if( pDb->pAux && pDb->xFreeAux ) pDb->xFreeAux(pDb->pAux);
   1.448 +      pDb->pAux = 0;
   1.449 +    }
   1.450 +  }
   1.451 +  for(i=j=2; i<db->nDb; i++){
   1.452 +    struct Db *pDb = &db->aDb[i];
   1.453 +    if( pDb->pBt==0 ){
   1.454 +      sqlite3DbFree(db, pDb->zName);
   1.455 +      pDb->zName = 0;
   1.456 +      continue;
   1.457 +    }
   1.458 +    if( j<i ){
   1.459 +      db->aDb[j] = db->aDb[i];
   1.460 +    }
   1.461 +    j++;
   1.462 +  }
   1.463 +  memset(&db->aDb[j], 0, (db->nDb-j)*sizeof(db->aDb[j]));
   1.464 +  db->nDb = j;
   1.465 +  if( db->nDb<=2 && db->aDb!=db->aDbStatic ){
   1.466 +    memcpy(db->aDbStatic, db->aDb, 2*sizeof(db->aDb[0]));
   1.467 +    sqlite3DbFree(db, db->aDb);
   1.468 +    db->aDb = db->aDbStatic;
   1.469 +  }
   1.470 +}
   1.471 +
   1.472 +/*
   1.473 +** This routine is called when a commit occurs.
   1.474 +*/
   1.475 +void sqlite3CommitInternalChanges(sqlite3 *db){
   1.476 +  db->flags &= ~SQLITE_InternChanges;
   1.477 +}
   1.478 +
   1.479 +/*
   1.480 +** Clear the column names from a table or view.
   1.481 +*/
   1.482 +static void sqliteResetColumnNames(Table *pTable){
   1.483 +  int i;
   1.484 +  Column *pCol;
   1.485 +  sqlite3 *db = pTable->db;
   1.486 +  assert( pTable!=0 );
   1.487 +  if( (pCol = pTable->aCol)!=0 ){
   1.488 +    for(i=0; i<pTable->nCol; i++, pCol++){
   1.489 +      sqlite3DbFree(db, pCol->zName);
   1.490 +      sqlite3ExprDelete(db, pCol->pDflt);
   1.491 +      sqlite3DbFree(db, pCol->zType);
   1.492 +      sqlite3DbFree(db, pCol->zColl);
   1.493 +    }
   1.494 +    sqlite3DbFree(db, pTable->aCol);
   1.495 +  }
   1.496 +  pTable->aCol = 0;
   1.497 +  pTable->nCol = 0;
   1.498 +}
   1.499 +
   1.500 +/*
   1.501 +** Remove the memory data structures associated with the given
   1.502 +** Table.  No changes are made to disk by this routine.
   1.503 +**
   1.504 +** This routine just deletes the data structure.  It does not unlink
   1.505 +** the table data structure from the hash table.  Nor does it remove
   1.506 +** foreign keys from the sqlite.aFKey hash table.  But it does destroy
   1.507 +** memory structures of the indices and foreign keys associated with 
   1.508 +** the table.
   1.509 +*/
   1.510 +void sqlite3DeleteTable(Table *pTable){
   1.511 +  Index *pIndex, *pNext;
   1.512 +  FKey *pFKey, *pNextFKey;
   1.513 +  sqlite3 *db;
   1.514 +
   1.515 +  if( pTable==0 ) return;
   1.516 +  db = pTable->db;
   1.517 +
   1.518 +  /* Do not delete the table until the reference count reaches zero. */
   1.519 +  pTable->nRef--;
   1.520 +  if( pTable->nRef>0 ){
   1.521 +    return;
   1.522 +  }
   1.523 +  assert( pTable->nRef==0 );
   1.524 +
   1.525 +  /* Delete all indices associated with this table
   1.526 +  */
   1.527 +  for(pIndex = pTable->pIndex; pIndex; pIndex=pNext){
   1.528 +    pNext = pIndex->pNext;
   1.529 +    assert( pIndex->pSchema==pTable->pSchema );
   1.530 +    sqliteDeleteIndex(pIndex);
   1.531 +  }
   1.532 +
   1.533 +#ifndef SQLITE_OMIT_FOREIGN_KEY
   1.534 +  /* Delete all foreign keys associated with this table.  The keys
   1.535 +  ** should have already been unlinked from the pSchema->aFKey hash table 
   1.536 +  */
   1.537 +  for(pFKey=pTable->pFKey; pFKey; pFKey=pNextFKey){
   1.538 +    pNextFKey = pFKey->pNextFrom;
   1.539 +    assert( sqlite3HashFind(&pTable->pSchema->aFKey,
   1.540 +                           pFKey->zTo, strlen(pFKey->zTo)+1)!=pFKey );
   1.541 +    sqlite3DbFree(db, pFKey);
   1.542 +  }
   1.543 +#endif
   1.544 +
   1.545 +  /* Delete the Table structure itself.
   1.546 +  */
   1.547 +  sqliteResetColumnNames(pTable);
   1.548 +  sqlite3DbFree(db, pTable->zName);
   1.549 +  sqlite3DbFree(db, pTable->zColAff);
   1.550 +  sqlite3SelectDelete(db, pTable->pSelect);
   1.551 +#ifndef SQLITE_OMIT_CHECK
   1.552 +  sqlite3ExprDelete(db, pTable->pCheck);
   1.553 +#endif
   1.554 +  sqlite3VtabClear(pTable);
   1.555 +  sqlite3DbFree(db, pTable);
   1.556 +}
   1.557 +
   1.558 +/*
   1.559 +** Unlink the given table from the hash tables and the delete the
   1.560 +** table structure with all its indices and foreign keys.
   1.561 +*/
   1.562 +void sqlite3UnlinkAndDeleteTable(sqlite3 *db, int iDb, const char *zTabName){
   1.563 +  Table *p;
   1.564 +  FKey *pF1, *pF2;
   1.565 +  Db *pDb;
   1.566 +
   1.567 +  assert( db!=0 );
   1.568 +  assert( iDb>=0 && iDb<db->nDb );
   1.569 +  assert( zTabName && zTabName[0] );
   1.570 +  pDb = &db->aDb[iDb];
   1.571 +  p = sqlite3HashInsert(&pDb->pSchema->tblHash, zTabName, strlen(zTabName)+1,0);
   1.572 +  if( p ){
   1.573 +#ifndef SQLITE_OMIT_FOREIGN_KEY
   1.574 +    for(pF1=p->pFKey; pF1; pF1=pF1->pNextFrom){
   1.575 +      int nTo = strlen(pF1->zTo) + 1;
   1.576 +      pF2 = sqlite3HashFind(&pDb->pSchema->aFKey, pF1->zTo, nTo);
   1.577 +      if( pF2==pF1 ){
   1.578 +        sqlite3HashInsert(&pDb->pSchema->aFKey, pF1->zTo, nTo, pF1->pNextTo);
   1.579 +      }else{
   1.580 +        while( pF2 && pF2->pNextTo!=pF1 ){ pF2=pF2->pNextTo; }
   1.581 +        if( pF2 ){
   1.582 +          pF2->pNextTo = pF1->pNextTo;
   1.583 +        }
   1.584 +      }
   1.585 +    }
   1.586 +#endif
   1.587 +    sqlite3DeleteTable(p);
   1.588 +  }
   1.589 +  db->flags |= SQLITE_InternChanges;
   1.590 +}
   1.591 +
   1.592 +/*
   1.593 +** Given a token, return a string that consists of the text of that
   1.594 +** token with any quotations removed.  Space to hold the returned string
   1.595 +** is obtained from sqliteMalloc() and must be freed by the calling
   1.596 +** function.
   1.597 +**
   1.598 +** Tokens are often just pointers into the original SQL text and so
   1.599 +** are not \000 terminated and are not persistent.  The returned string
   1.600 +** is \000 terminated and is persistent.
   1.601 +*/
   1.602 +char *sqlite3NameFromToken(sqlite3 *db, Token *pName){
   1.603 +  char *zName;
   1.604 +  if( pName ){
   1.605 +    zName = sqlite3DbStrNDup(db, (char*)pName->z, pName->n);
   1.606 +    sqlite3Dequote(zName);
   1.607 +  }else{
   1.608 +    zName = 0;
   1.609 +  }
   1.610 +  return zName;
   1.611 +}
   1.612 +
   1.613 +/*
   1.614 +** Open the sqlite_master table stored in database number iDb for
   1.615 +** writing. The table is opened using cursor 0.
   1.616 +*/
   1.617 +void sqlite3OpenMasterTable(Parse *p, int iDb){
   1.618 +  Vdbe *v = sqlite3GetVdbe(p);
   1.619 +  sqlite3TableLock(p, iDb, MASTER_ROOT, 1, SCHEMA_TABLE(iDb));
   1.620 +  sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, 5);/* sqlite_master has 5 columns */
   1.621 +  sqlite3VdbeAddOp3(v, OP_OpenWrite, 0, MASTER_ROOT, iDb);
   1.622 +}
   1.623 +
   1.624 +/*
   1.625 +** The token *pName contains the name of a database (either "main" or
   1.626 +** "temp" or the name of an attached db). This routine returns the
   1.627 +** index of the named database in db->aDb[], or -1 if the named db 
   1.628 +** does not exist.
   1.629 +*/
   1.630 +int sqlite3FindDb(sqlite3 *db, Token *pName){
   1.631 +  int i = -1;    /* Database number */
   1.632 +  int n;         /* Number of characters in the name */
   1.633 +  Db *pDb;       /* A database whose name space is being searched */
   1.634 +  char *zName;   /* Name we are searching for */
   1.635 +
   1.636 +  zName = sqlite3NameFromToken(db, pName);
   1.637 +  if( zName ){
   1.638 +    n = strlen(zName);
   1.639 +    for(i=(db->nDb-1), pDb=&db->aDb[i]; i>=0; i--, pDb--){
   1.640 +      if( (!OMIT_TEMPDB || i!=1 ) && n==strlen(pDb->zName) && 
   1.641 +          0==sqlite3StrICmp(pDb->zName, zName) ){
   1.642 +        break;
   1.643 +      }
   1.644 +    }
   1.645 +    sqlite3DbFree(db, zName);
   1.646 +  }
   1.647 +  return i;
   1.648 +}
   1.649 +
   1.650 +/* The table or view or trigger name is passed to this routine via tokens
   1.651 +** pName1 and pName2. If the table name was fully qualified, for example:
   1.652 +**
   1.653 +** CREATE TABLE xxx.yyy (...);
   1.654 +** 
   1.655 +** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
   1.656 +** the table name is not fully qualified, i.e.:
   1.657 +**
   1.658 +** CREATE TABLE yyy(...);
   1.659 +**
   1.660 +** Then pName1 is set to "yyy" and pName2 is "".
   1.661 +**
   1.662 +** This routine sets the *ppUnqual pointer to point at the token (pName1 or
   1.663 +** pName2) that stores the unqualified table name.  The index of the
   1.664 +** database "xxx" is returned.
   1.665 +*/
   1.666 +int sqlite3TwoPartName(
   1.667 +  Parse *pParse,      /* Parsing and code generating context */
   1.668 +  Token *pName1,      /* The "xxx" in the name "xxx.yyy" or "xxx" */
   1.669 +  Token *pName2,      /* The "yyy" in the name "xxx.yyy" */
   1.670 +  Token **pUnqual     /* Write the unqualified object name here */
   1.671 +){
   1.672 +  int iDb;                    /* Database holding the object */
   1.673 +  sqlite3 *db = pParse->db;
   1.674 +
   1.675 +  if( pName2 && pName2->n>0 ){
   1.676 +    assert( !db->init.busy );
   1.677 +    *pUnqual = pName2;
   1.678 +    iDb = sqlite3FindDb(db, pName1);
   1.679 +    if( iDb<0 ){
   1.680 +      sqlite3ErrorMsg(pParse, "unknown database %T", pName1);
   1.681 +      pParse->nErr++;
   1.682 +      return -1;
   1.683 +    }
   1.684 +  }else{
   1.685 +    assert( db->init.iDb==0 || db->init.busy );
   1.686 +    iDb = db->init.iDb;
   1.687 +    *pUnqual = pName1;
   1.688 +  }
   1.689 +  return iDb;
   1.690 +}
   1.691 +
   1.692 +/*
   1.693 +** This routine is used to check if the UTF-8 string zName is a legal
   1.694 +** unqualified name for a new schema object (table, index, view or
   1.695 +** trigger). All names are legal except those that begin with the string
   1.696 +** "sqlite_" (in upper, lower or mixed case). This portion of the namespace
   1.697 +** is reserved for internal use.
   1.698 +*/
   1.699 +int sqlite3CheckObjectName(Parse *pParse, const char *zName){
   1.700 +  if( !pParse->db->init.busy && pParse->nested==0 
   1.701 +          && (pParse->db->flags & SQLITE_WriteSchema)==0
   1.702 +          && 0==sqlite3StrNICmp(zName, "sqlite_", 7) ){
   1.703 +    sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName);
   1.704 +    return SQLITE_ERROR;
   1.705 +  }
   1.706 +  return SQLITE_OK;
   1.707 +}
   1.708 +
   1.709 +/*
   1.710 +** Begin constructing a new table representation in memory.  This is
   1.711 +** the first of several action routines that get called in response
   1.712 +** to a CREATE TABLE statement.  In particular, this routine is called
   1.713 +** after seeing tokens "CREATE" and "TABLE" and the table name. The isTemp
   1.714 +** flag is true if the table should be stored in the auxiliary database
   1.715 +** file instead of in the main database file.  This is normally the case
   1.716 +** when the "TEMP" or "TEMPORARY" keyword occurs in between
   1.717 +** CREATE and TABLE.
   1.718 +**
   1.719 +** The new table record is initialized and put in pParse->pNewTable.
   1.720 +** As more of the CREATE TABLE statement is parsed, additional action
   1.721 +** routines will be called to add more information to this record.
   1.722 +** At the end of the CREATE TABLE statement, the sqlite3EndTable() routine
   1.723 +** is called to complete the construction of the new table record.
   1.724 +*/
   1.725 +void sqlite3StartTable(
   1.726 +  Parse *pParse,   /* Parser context */
   1.727 +  Token *pName1,   /* First part of the name of the table or view */
   1.728 +  Token *pName2,   /* Second part of the name of the table or view */
   1.729 +  int isTemp,      /* True if this is a TEMP table */
   1.730 +  int isView,      /* True if this is a VIEW */
   1.731 +  int isVirtual,   /* True if this is a VIRTUAL table */
   1.732 +  int noErr        /* Do nothing if table already exists */
   1.733 +){
   1.734 +  Table *pTable;
   1.735 +  char *zName = 0; /* The name of the new table */
   1.736 +  sqlite3 *db = pParse->db;
   1.737 +  Vdbe *v;
   1.738 +  int iDb;         /* Database number to create the table in */
   1.739 +  Token *pName;    /* Unqualified name of the table to create */
   1.740 +
   1.741 +  /* The table or view name to create is passed to this routine via tokens
   1.742 +  ** pName1 and pName2. If the table name was fully qualified, for example:
   1.743 +  **
   1.744 +  ** CREATE TABLE xxx.yyy (...);
   1.745 +  ** 
   1.746 +  ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
   1.747 +  ** the table name is not fully qualified, i.e.:
   1.748 +  **
   1.749 +  ** CREATE TABLE yyy(...);
   1.750 +  **
   1.751 +  ** Then pName1 is set to "yyy" and pName2 is "".
   1.752 +  **
   1.753 +  ** The call below sets the pName pointer to point at the token (pName1 or
   1.754 +  ** pName2) that stores the unqualified table name. The variable iDb is
   1.755 +  ** set to the index of the database that the table or view is to be
   1.756 +  ** created in.
   1.757 +  */
   1.758 +  iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
   1.759 +  if( iDb<0 ) return;
   1.760 +  if( !OMIT_TEMPDB && isTemp && iDb>1 ){
   1.761 +    /* If creating a temp table, the name may not be qualified */
   1.762 +    sqlite3ErrorMsg(pParse, "temporary table name must be unqualified");
   1.763 +    return;
   1.764 +  }
   1.765 +  if( !OMIT_TEMPDB && isTemp ) iDb = 1;
   1.766 +
   1.767 +  pParse->sNameToken = *pName;
   1.768 +  zName = sqlite3NameFromToken(db, pName);
   1.769 +  if( zName==0 ) return;
   1.770 +  if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){
   1.771 +    goto begin_table_error;
   1.772 +  }
   1.773 +  if( db->init.iDb==1 ) isTemp = 1;
   1.774 +#ifndef SQLITE_OMIT_AUTHORIZATION
   1.775 +  assert( (isTemp & 1)==isTemp );
   1.776 +  {
   1.777 +    int code;
   1.778 +    char *zDb = db->aDb[iDb].zName;
   1.779 +    if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(isTemp), 0, zDb) ){
   1.780 +      goto begin_table_error;
   1.781 +    }
   1.782 +    if( isView ){
   1.783 +      if( !OMIT_TEMPDB && isTemp ){
   1.784 +        code = SQLITE_CREATE_TEMP_VIEW;
   1.785 +      }else{
   1.786 +        code = SQLITE_CREATE_VIEW;
   1.787 +      }
   1.788 +    }else{
   1.789 +      if( !OMIT_TEMPDB && isTemp ){
   1.790 +        code = SQLITE_CREATE_TEMP_TABLE;
   1.791 +      }else{
   1.792 +        code = SQLITE_CREATE_TABLE;
   1.793 +      }
   1.794 +    }
   1.795 +    if( !isVirtual && sqlite3AuthCheck(pParse, code, zName, 0, zDb) ){
   1.796 +      goto begin_table_error;
   1.797 +    }
   1.798 +  }
   1.799 +#endif
   1.800 +
   1.801 +  /* Make sure the new table name does not collide with an existing
   1.802 +  ** index or table name in the same database.  Issue an error message if
   1.803 +  ** it does. The exception is if the statement being parsed was passed
   1.804 +  ** to an sqlite3_declare_vtab() call. In that case only the column names
   1.805 +  ** and types will be used, so there is no need to test for namespace
   1.806 +  ** collisions.
   1.807 +  */
   1.808 +  if( !IN_DECLARE_VTAB ){
   1.809 +    if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){
   1.810 +      goto begin_table_error;
   1.811 +    }
   1.812 +    pTable = sqlite3FindTable(db, zName, db->aDb[iDb].zName);
   1.813 +    if( pTable ){
   1.814 +      if( !noErr ){
   1.815 +        sqlite3ErrorMsg(pParse, "table %T already exists", pName);
   1.816 +      }
   1.817 +      goto begin_table_error;
   1.818 +    }
   1.819 +    if( sqlite3FindIndex(db, zName, 0)!=0 && (iDb==0 || !db->init.busy) ){
   1.820 +      sqlite3ErrorMsg(pParse, "there is already an index named %s", zName);
   1.821 +      goto begin_table_error;
   1.822 +    }
   1.823 +  }
   1.824 +
   1.825 +  pTable = sqlite3DbMallocZero(db, sizeof(Table));
   1.826 +  if( pTable==0 ){
   1.827 +    db->mallocFailed = 1;
   1.828 +    pParse->rc = SQLITE_NOMEM;
   1.829 +    pParse->nErr++;
   1.830 +    goto begin_table_error;
   1.831 +  }
   1.832 +  pTable->zName = zName;
   1.833 +  pTable->iPKey = -1;
   1.834 +  pTable->pSchema = db->aDb[iDb].pSchema;
   1.835 +  pTable->nRef = 1;
   1.836 +  pTable->db = db;
   1.837 +  if( pParse->pNewTable ) sqlite3DeleteTable(pParse->pNewTable);
   1.838 +  pParse->pNewTable = pTable;
   1.839 +
   1.840 +  /* If this is the magic sqlite_sequence table used by autoincrement,
   1.841 +  ** then record a pointer to this table in the main database structure
   1.842 +  ** so that INSERT can find the table easily.
   1.843 +  */
   1.844 +#ifndef SQLITE_OMIT_AUTOINCREMENT
   1.845 +  if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
   1.846 +    pTable->pSchema->pSeqTab = pTable;
   1.847 +  }
   1.848 +#endif
   1.849 +
   1.850 +  /* Begin generating the code that will insert the table record into
   1.851 +  ** the SQLITE_MASTER table.  Note in particular that we must go ahead
   1.852 +  ** and allocate the record number for the table entry now.  Before any
   1.853 +  ** PRIMARY KEY or UNIQUE keywords are parsed.  Those keywords will cause
   1.854 +  ** indices to be created and the table record must come before the 
   1.855 +  ** indices.  Hence, the record number for the table must be allocated
   1.856 +  ** now.
   1.857 +  */
   1.858 +  if( !db->init.busy && (v = sqlite3GetVdbe(pParse))!=0 ){
   1.859 +    int j1;
   1.860 +    int fileFormat;
   1.861 +    int reg1, reg2, reg3;
   1.862 +    sqlite3BeginWriteOperation(pParse, 0, iDb);
   1.863 +
   1.864 +#ifndef SQLITE_OMIT_VIRTUALTABLE
   1.865 +    if( isVirtual ){
   1.866 +      sqlite3VdbeAddOp0(v, OP_VBegin);
   1.867 +    }
   1.868 +#endif
   1.869 +
   1.870 +    /* If the file format and encoding in the database have not been set, 
   1.871 +    ** set them now.
   1.872 +    */
   1.873 +    reg1 = pParse->regRowid = ++pParse->nMem;
   1.874 +    reg2 = pParse->regRoot = ++pParse->nMem;
   1.875 +    reg3 = ++pParse->nMem;
   1.876 +    sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, reg3, 1);   /* file_format */
   1.877 +    sqlite3VdbeUsesBtree(v, iDb);
   1.878 +    j1 = sqlite3VdbeAddOp1(v, OP_If, reg3);
   1.879 +    fileFormat = (db->flags & SQLITE_LegacyFileFmt)!=0 ?
   1.880 +                  1 : SQLITE_MAX_FILE_FORMAT;
   1.881 +    sqlite3VdbeAddOp2(v, OP_Integer, fileFormat, reg3);
   1.882 +    sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, 1, reg3);
   1.883 +    sqlite3VdbeAddOp2(v, OP_Integer, ENC(db), reg3);
   1.884 +    sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, 4, reg3);
   1.885 +    sqlite3VdbeJumpHere(v, j1);
   1.886 +
   1.887 +    /* This just creates a place-holder record in the sqlite_master table.
   1.888 +    ** The record created does not contain anything yet.  It will be replaced
   1.889 +    ** by the real entry in code generated at sqlite3EndTable().
   1.890 +    **
   1.891 +    ** The rowid for the new entry is left on the top of the stack.
   1.892 +    ** The rowid value is needed by the code that sqlite3EndTable will
   1.893 +    ** generate.
   1.894 +    */
   1.895 +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE)
   1.896 +    if( isView || isVirtual ){
   1.897 +      sqlite3VdbeAddOp2(v, OP_Integer, 0, reg2);
   1.898 +    }else
   1.899 +#endif
   1.900 +    {
   1.901 +      sqlite3VdbeAddOp2(v, OP_CreateTable, iDb, reg2);
   1.902 +    }
   1.903 +    sqlite3OpenMasterTable(pParse, iDb);
   1.904 +    sqlite3VdbeAddOp2(v, OP_NewRowid, 0, reg1);
   1.905 +    sqlite3VdbeAddOp2(v, OP_Null, 0, reg3);
   1.906 +    sqlite3VdbeAddOp3(v, OP_Insert, 0, reg3, reg1);
   1.907 +    sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
   1.908 +    sqlite3VdbeAddOp0(v, OP_Close);
   1.909 +  }
   1.910 +
   1.911 +  /* Normal (non-error) return. */
   1.912 +  return;
   1.913 +
   1.914 +  /* If an error occurs, we jump here */
   1.915 +begin_table_error:
   1.916 +  sqlite3DbFree(db, zName);
   1.917 +  return;
   1.918 +}
   1.919 +
   1.920 +/*
   1.921 +** This macro is used to compare two strings in a case-insensitive manner.
   1.922 +** It is slightly faster than calling sqlite3StrICmp() directly, but
   1.923 +** produces larger code.
   1.924 +**
   1.925 +** WARNING: This macro is not compatible with the strcmp() family. It
   1.926 +** returns true if the two strings are equal, otherwise false.
   1.927 +*/
   1.928 +#define STRICMP(x, y) (\
   1.929 +sqlite3UpperToLower[*(unsigned char *)(x)]==   \
   1.930 +sqlite3UpperToLower[*(unsigned char *)(y)]     \
   1.931 +&& sqlite3StrICmp((x)+1,(y)+1)==0 )
   1.932 +
   1.933 +/*
   1.934 +** Add a new column to the table currently being constructed.
   1.935 +**
   1.936 +** The parser calls this routine once for each column declaration
   1.937 +** in a CREATE TABLE statement.  sqlite3StartTable() gets called
   1.938 +** first to get things going.  Then this routine is called for each
   1.939 +** column.
   1.940 +*/
   1.941 +void sqlite3AddColumn(Parse *pParse, Token *pName){
   1.942 +  Table *p;
   1.943 +  int i;
   1.944 +  char *z;
   1.945 +  Column *pCol;
   1.946 +  sqlite3 *db = pParse->db;
   1.947 +  if( (p = pParse->pNewTable)==0 ) return;
   1.948 +#if SQLITE_MAX_COLUMN
   1.949 +  if( p->nCol+1>db->aLimit[SQLITE_LIMIT_COLUMN] ){
   1.950 +    sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName);
   1.951 +    return;
   1.952 +  }
   1.953 +#endif
   1.954 +  z = sqlite3NameFromToken(pParse->db, pName);
   1.955 +  if( z==0 ) return;
   1.956 +  for(i=0; i<p->nCol; i++){
   1.957 +    if( STRICMP(z, p->aCol[i].zName) ){
   1.958 +      sqlite3ErrorMsg(pParse, "duplicate column name: %s", z);
   1.959 +      sqlite3DbFree(db, z);
   1.960 +      return;
   1.961 +    }
   1.962 +  }
   1.963 +  if( (p->nCol & 0x7)==0 ){
   1.964 +    Column *aNew;
   1.965 +    aNew = sqlite3DbRealloc(pParse->db,p->aCol,(p->nCol+8)*sizeof(p->aCol[0]));
   1.966 +    if( aNew==0 ){
   1.967 +      sqlite3DbFree(db, z);
   1.968 +      return;
   1.969 +    }
   1.970 +    p->aCol = aNew;
   1.971 +  }
   1.972 +  pCol = &p->aCol[p->nCol];
   1.973 +  memset(pCol, 0, sizeof(p->aCol[0]));
   1.974 +  pCol->zName = z;
   1.975 + 
   1.976 +  /* If there is no type specified, columns have the default affinity
   1.977 +  ** 'NONE'. If there is a type specified, then sqlite3AddColumnType() will
   1.978 +  ** be called next to set pCol->affinity correctly.
   1.979 +  */
   1.980 +  pCol->affinity = SQLITE_AFF_NONE;
   1.981 +  p->nCol++;
   1.982 +}
   1.983 +
   1.984 +/*
   1.985 +** This routine is called by the parser while in the middle of
   1.986 +** parsing a CREATE TABLE statement.  A "NOT NULL" constraint has
   1.987 +** been seen on a column.  This routine sets the notNull flag on
   1.988 +** the column currently under construction.
   1.989 +*/
   1.990 +void sqlite3AddNotNull(Parse *pParse, int onError){
   1.991 +  Table *p;
   1.992 +  int i;
   1.993 +  if( (p = pParse->pNewTable)==0 ) return;
   1.994 +  i = p->nCol-1;
   1.995 +  if( i>=0 ) p->aCol[i].notNull = onError;
   1.996 +}
   1.997 +
   1.998 +/*
   1.999 +** Scan the column type name zType (length nType) and return the
  1.1000 +** associated affinity type.
  1.1001 +**
  1.1002 +** This routine does a case-independent search of zType for the 
  1.1003 +** substrings in the following table. If one of the substrings is
  1.1004 +** found, the corresponding affinity is returned. If zType contains
  1.1005 +** more than one of the substrings, entries toward the top of 
  1.1006 +** the table take priority. For example, if zType is 'BLOBINT', 
  1.1007 +** SQLITE_AFF_INTEGER is returned.
  1.1008 +**
  1.1009 +** Substring     | Affinity
  1.1010 +** --------------------------------
  1.1011 +** 'INT'         | SQLITE_AFF_INTEGER
  1.1012 +** 'CHAR'        | SQLITE_AFF_TEXT
  1.1013 +** 'CLOB'        | SQLITE_AFF_TEXT
  1.1014 +** 'TEXT'        | SQLITE_AFF_TEXT
  1.1015 +** 'BLOB'        | SQLITE_AFF_NONE
  1.1016 +** 'REAL'        | SQLITE_AFF_REAL
  1.1017 +** 'FLOA'        | SQLITE_AFF_REAL
  1.1018 +** 'DOUB'        | SQLITE_AFF_REAL
  1.1019 +**
  1.1020 +** If none of the substrings in the above table are found,
  1.1021 +** SQLITE_AFF_NUMERIC is returned.
  1.1022 +*/
  1.1023 +char sqlite3AffinityType(const Token *pType){
  1.1024 +  u32 h = 0;
  1.1025 +  char aff = SQLITE_AFF_NUMERIC;
  1.1026 +  const unsigned char *zIn = pType->z;
  1.1027 +  const unsigned char *zEnd = &pType->z[pType->n];
  1.1028 +
  1.1029 +  while( zIn!=zEnd ){
  1.1030 +    h = (h<<8) + sqlite3UpperToLower[*zIn];
  1.1031 +    zIn++;
  1.1032 +    if( h==(('c'<<24)+('h'<<16)+('a'<<8)+'r') ){             /* CHAR */
  1.1033 +      aff = SQLITE_AFF_TEXT; 
  1.1034 +    }else if( h==(('c'<<24)+('l'<<16)+('o'<<8)+'b') ){       /* CLOB */
  1.1035 +      aff = SQLITE_AFF_TEXT;
  1.1036 +    }else if( h==(('t'<<24)+('e'<<16)+('x'<<8)+'t') ){       /* TEXT */
  1.1037 +      aff = SQLITE_AFF_TEXT;
  1.1038 +    }else if( h==(('b'<<24)+('l'<<16)+('o'<<8)+'b')          /* BLOB */
  1.1039 +        && (aff==SQLITE_AFF_NUMERIC || aff==SQLITE_AFF_REAL) ){
  1.1040 +      aff = SQLITE_AFF_NONE;
  1.1041 +#ifndef SQLITE_OMIT_FLOATING_POINT
  1.1042 +    }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l')          /* REAL */
  1.1043 +        && aff==SQLITE_AFF_NUMERIC ){
  1.1044 +      aff = SQLITE_AFF_REAL;
  1.1045 +    }else if( h==(('f'<<24)+('l'<<16)+('o'<<8)+'a')          /* FLOA */
  1.1046 +        && aff==SQLITE_AFF_NUMERIC ){
  1.1047 +      aff = SQLITE_AFF_REAL;
  1.1048 +    }else if( h==(('d'<<24)+('o'<<16)+('u'<<8)+'b')          /* DOUB */
  1.1049 +        && aff==SQLITE_AFF_NUMERIC ){
  1.1050 +      aff = SQLITE_AFF_REAL;
  1.1051 +#endif
  1.1052 +    }else if( (h&0x00FFFFFF)==(('i'<<16)+('n'<<8)+'t') ){    /* INT */
  1.1053 +      aff = SQLITE_AFF_INTEGER;
  1.1054 +      break;
  1.1055 +    }
  1.1056 +  }
  1.1057 +
  1.1058 +  return aff;
  1.1059 +}
  1.1060 +
  1.1061 +/*
  1.1062 +** This routine is called by the parser while in the middle of
  1.1063 +** parsing a CREATE TABLE statement.  The pFirst token is the first
  1.1064 +** token in the sequence of tokens that describe the type of the
  1.1065 +** column currently under construction.   pLast is the last token
  1.1066 +** in the sequence.  Use this information to construct a string
  1.1067 +** that contains the typename of the column and store that string
  1.1068 +** in zType.
  1.1069 +*/ 
  1.1070 +void sqlite3AddColumnType(Parse *pParse, Token *pType){
  1.1071 +  Table *p;
  1.1072 +  int i;
  1.1073 +  Column *pCol;
  1.1074 +  sqlite3 *db;
  1.1075 +
  1.1076 +  if( (p = pParse->pNewTable)==0 ) return;
  1.1077 +  i = p->nCol-1;
  1.1078 +  if( i<0 ) return;
  1.1079 +  pCol = &p->aCol[i];
  1.1080 +  db = pParse->db;
  1.1081 +  sqlite3DbFree(db, pCol->zType);
  1.1082 +  pCol->zType = sqlite3NameFromToken(db, pType);
  1.1083 +  pCol->affinity = sqlite3AffinityType(pType);
  1.1084 +}
  1.1085 +
  1.1086 +/*
  1.1087 +** The expression is the default value for the most recently added column
  1.1088 +** of the table currently under construction.
  1.1089 +**
  1.1090 +** Default value expressions must be constant.  Raise an exception if this
  1.1091 +** is not the case.
  1.1092 +**
  1.1093 +** This routine is called by the parser while in the middle of
  1.1094 +** parsing a CREATE TABLE statement.
  1.1095 +*/
  1.1096 +void sqlite3AddDefaultValue(Parse *pParse, Expr *pExpr){
  1.1097 +  Table *p;
  1.1098 +  Column *pCol;
  1.1099 +  sqlite3 *db = pParse->db;
  1.1100 +  if( (p = pParse->pNewTable)!=0 ){
  1.1101 +    pCol = &(p->aCol[p->nCol-1]);
  1.1102 +    if( !sqlite3ExprIsConstantOrFunction(pExpr) ){
  1.1103 +      sqlite3ErrorMsg(pParse, "default value of column [%s] is not constant",
  1.1104 +          pCol->zName);
  1.1105 +    }else{
  1.1106 +      Expr *pCopy;
  1.1107 +      sqlite3ExprDelete(db, pCol->pDflt);
  1.1108 +      pCol->pDflt = pCopy = sqlite3ExprDup(db, pExpr);
  1.1109 +      if( pCopy ){
  1.1110 +        sqlite3TokenCopy(db, &pCopy->span, &pExpr->span);
  1.1111 +      }
  1.1112 +    }
  1.1113 +  }
  1.1114 +  sqlite3ExprDelete(db, pExpr);
  1.1115 +}
  1.1116 +
  1.1117 +/*
  1.1118 +** Designate the PRIMARY KEY for the table.  pList is a list of names 
  1.1119 +** of columns that form the primary key.  If pList is NULL, then the
  1.1120 +** most recently added column of the table is the primary key.
  1.1121 +**
  1.1122 +** A table can have at most one primary key.  If the table already has
  1.1123 +** a primary key (and this is the second primary key) then create an
  1.1124 +** error.
  1.1125 +**
  1.1126 +** If the PRIMARY KEY is on a single column whose datatype is INTEGER,
  1.1127 +** then we will try to use that column as the rowid.  Set the Table.iPKey
  1.1128 +** field of the table under construction to be the index of the
  1.1129 +** INTEGER PRIMARY KEY column.  Table.iPKey is set to -1 if there is
  1.1130 +** no INTEGER PRIMARY KEY.
  1.1131 +**
  1.1132 +** If the key is not an INTEGER PRIMARY KEY, then create a unique
  1.1133 +** index for the key.  No index is created for INTEGER PRIMARY KEYs.
  1.1134 +*/
  1.1135 +void sqlite3AddPrimaryKey(
  1.1136 +  Parse *pParse,    /* Parsing context */
  1.1137 +  ExprList *pList,  /* List of field names to be indexed */
  1.1138 +  int onError,      /* What to do with a uniqueness conflict */
  1.1139 +  int autoInc,      /* True if the AUTOINCREMENT keyword is present */
  1.1140 +  int sortOrder     /* SQLITE_SO_ASC or SQLITE_SO_DESC */
  1.1141 +){
  1.1142 +  Table *pTab = pParse->pNewTable;
  1.1143 +  char *zType = 0;
  1.1144 +  int iCol = -1, i;
  1.1145 +  if( pTab==0 || IN_DECLARE_VTAB ) goto primary_key_exit;
  1.1146 +  if( pTab->hasPrimKey ){
  1.1147 +    sqlite3ErrorMsg(pParse, 
  1.1148 +      "table \"%s\" has more than one primary key", pTab->zName);
  1.1149 +    goto primary_key_exit;
  1.1150 +  }
  1.1151 +  pTab->hasPrimKey = 1;
  1.1152 +  if( pList==0 ){
  1.1153 +    iCol = pTab->nCol - 1;
  1.1154 +    pTab->aCol[iCol].isPrimKey = 1;
  1.1155 +  }else{
  1.1156 +    for(i=0; i<pList->nExpr; i++){
  1.1157 +      for(iCol=0; iCol<pTab->nCol; iCol++){
  1.1158 +        if( sqlite3StrICmp(pList->a[i].zName, pTab->aCol[iCol].zName)==0 ){
  1.1159 +          break;
  1.1160 +        }
  1.1161 +      }
  1.1162 +      if( iCol<pTab->nCol ){
  1.1163 +        pTab->aCol[iCol].isPrimKey = 1;
  1.1164 +      }
  1.1165 +    }
  1.1166 +    if( pList->nExpr>1 ) iCol = -1;
  1.1167 +  }
  1.1168 +  if( iCol>=0 && iCol<pTab->nCol ){
  1.1169 +    zType = pTab->aCol[iCol].zType;
  1.1170 +  }
  1.1171 +  if( zType && sqlite3StrICmp(zType, "INTEGER")==0
  1.1172 +        && sortOrder==SQLITE_SO_ASC ){
  1.1173 +    pTab->iPKey = iCol;
  1.1174 +    pTab->keyConf = onError;
  1.1175 +    pTab->autoInc = autoInc;
  1.1176 +  }else if( autoInc ){
  1.1177 +#ifndef SQLITE_OMIT_AUTOINCREMENT
  1.1178 +    sqlite3ErrorMsg(pParse, "AUTOINCREMENT is only allowed on an "
  1.1179 +       "INTEGER PRIMARY KEY");
  1.1180 +#endif
  1.1181 +  }else{
  1.1182 +    sqlite3CreateIndex(pParse, 0, 0, 0, pList, onError, 0, 0, sortOrder, 0);
  1.1183 +    pList = 0;
  1.1184 +  }
  1.1185 +
  1.1186 +primary_key_exit:
  1.1187 +  sqlite3ExprListDelete(pParse->db, pList);
  1.1188 +  return;
  1.1189 +}
  1.1190 +
  1.1191 +/*
  1.1192 +** Add a new CHECK constraint to the table currently under construction.
  1.1193 +*/
  1.1194 +void sqlite3AddCheckConstraint(
  1.1195 +  Parse *pParse,    /* Parsing context */
  1.1196 +  Expr *pCheckExpr  /* The check expression */
  1.1197 +){
  1.1198 +  sqlite3 *db = pParse->db;
  1.1199 +#ifndef SQLITE_OMIT_CHECK
  1.1200 +  Table *pTab = pParse->pNewTable;
  1.1201 +  if( pTab && !IN_DECLARE_VTAB ){
  1.1202 +    /* The CHECK expression must be duplicated so that tokens refer
  1.1203 +    ** to malloced space and not the (ephemeral) text of the CREATE TABLE
  1.1204 +    ** statement */
  1.1205 +    pTab->pCheck = sqlite3ExprAnd(db, pTab->pCheck, 
  1.1206 +                                  sqlite3ExprDup(db, pCheckExpr));
  1.1207 +  }
  1.1208 +#endif
  1.1209 +  sqlite3ExprDelete(db, pCheckExpr);
  1.1210 +}
  1.1211 +
  1.1212 +/*
  1.1213 +** Set the collation function of the most recently parsed table column
  1.1214 +** to the CollSeq given.
  1.1215 +*/
  1.1216 +void sqlite3AddCollateType(Parse *pParse, Token *pToken){
  1.1217 +  Table *p;
  1.1218 +  int i;
  1.1219 +  char *zColl;              /* Dequoted name of collation sequence */
  1.1220 +  sqlite3 *db;
  1.1221 +
  1.1222 +  if( (p = pParse->pNewTable)==0 ) return;
  1.1223 +  i = p->nCol-1;
  1.1224 +  db = pParse->db;
  1.1225 +  zColl = sqlite3NameFromToken(db, pToken);
  1.1226 +  if( !zColl ) return;
  1.1227 +
  1.1228 +  if( sqlite3LocateCollSeq(pParse, zColl, -1) ){
  1.1229 +    Index *pIdx;
  1.1230 +    p->aCol[i].zColl = zColl;
  1.1231 +  
  1.1232 +    /* If the column is declared as "<name> PRIMARY KEY COLLATE <type>",
  1.1233 +    ** then an index may have been created on this column before the
  1.1234 +    ** collation type was added. Correct this if it is the case.
  1.1235 +    */
  1.1236 +    for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){
  1.1237 +      assert( pIdx->nColumn==1 );
  1.1238 +      if( pIdx->aiColumn[0]==i ){
  1.1239 +        pIdx->azColl[0] = p->aCol[i].zColl;
  1.1240 +      }
  1.1241 +    }
  1.1242 +  }else{
  1.1243 +    sqlite3DbFree(db, zColl);
  1.1244 +  }
  1.1245 +}
  1.1246 +
  1.1247 +/*
  1.1248 +** This function returns the collation sequence for database native text
  1.1249 +** encoding identified by the string zName, length nName.
  1.1250 +**
  1.1251 +** If the requested collation sequence is not available, or not available
  1.1252 +** in the database native encoding, the collation factory is invoked to
  1.1253 +** request it. If the collation factory does not supply such a sequence,
  1.1254 +** and the sequence is available in another text encoding, then that is
  1.1255 +** returned instead.
  1.1256 +**
  1.1257 +** If no versions of the requested collations sequence are available, or
  1.1258 +** another error occurs, NULL is returned and an error message written into
  1.1259 +** pParse.
  1.1260 +**
  1.1261 +** This routine is a wrapper around sqlite3FindCollSeq().  This routine
  1.1262 +** invokes the collation factory if the named collation cannot be found
  1.1263 +** and generates an error message.
  1.1264 +*/
  1.1265 +CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName, int nName){
  1.1266 +  sqlite3 *db = pParse->db;
  1.1267 +  u8 enc = ENC(db);
  1.1268 +  u8 initbusy = db->init.busy;
  1.1269 +  CollSeq *pColl;
  1.1270 +
  1.1271 +  pColl = sqlite3FindCollSeq(db, enc, zName, nName, initbusy);
  1.1272 +  if( !initbusy && (!pColl || !pColl->xCmp) ){
  1.1273 +    pColl = sqlite3GetCollSeq(db, pColl, zName, nName);
  1.1274 +    if( !pColl ){
  1.1275 +      if( nName<0 ){
  1.1276 +        nName = sqlite3Strlen(db, zName);
  1.1277 +      }
  1.1278 +      sqlite3ErrorMsg(pParse, "no such collation sequence: %.*s", nName, zName);
  1.1279 +      pColl = 0;
  1.1280 +    }
  1.1281 +  }
  1.1282 +
  1.1283 +  return pColl;
  1.1284 +}
  1.1285 +
  1.1286 +
  1.1287 +/*
  1.1288 +** Generate code that will increment the schema cookie.
  1.1289 +**
  1.1290 +** The schema cookie is used to determine when the schema for the
  1.1291 +** database changes.  After each schema change, the cookie value
  1.1292 +** changes.  When a process first reads the schema it records the
  1.1293 +** cookie.  Thereafter, whenever it goes to access the database,
  1.1294 +** it checks the cookie to make sure the schema has not changed
  1.1295 +** since it was last read.
  1.1296 +**
  1.1297 +** This plan is not completely bullet-proof.  It is possible for
  1.1298 +** the schema to change multiple times and for the cookie to be
  1.1299 +** set back to prior value.  But schema changes are infrequent
  1.1300 +** and the probability of hitting the same cookie value is only
  1.1301 +** 1 chance in 2^32.  So we're safe enough.
  1.1302 +*/
  1.1303 +void sqlite3ChangeCookie(Parse *pParse, int iDb){
  1.1304 +  int r1 = sqlite3GetTempReg(pParse);
  1.1305 +  sqlite3 *db = pParse->db;
  1.1306 +  Vdbe *v = pParse->pVdbe;
  1.1307 +  sqlite3VdbeAddOp2(v, OP_Integer, db->aDb[iDb].pSchema->schema_cookie+1, r1);
  1.1308 +  sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, 0, r1);
  1.1309 +  sqlite3ReleaseTempReg(pParse, r1);
  1.1310 +}
  1.1311 +
  1.1312 +/*
  1.1313 +** Measure the number of characters needed to output the given
  1.1314 +** identifier.  The number returned includes any quotes used
  1.1315 +** but does not include the null terminator.
  1.1316 +**
  1.1317 +** The estimate is conservative.  It might be larger that what is
  1.1318 +** really needed.
  1.1319 +*/
  1.1320 +static int identLength(const char *z){
  1.1321 +  int n;
  1.1322 +  for(n=0; *z; n++, z++){
  1.1323 +    if( *z=='"' ){ n++; }
  1.1324 +  }
  1.1325 +  return n + 2;
  1.1326 +}
  1.1327 +
  1.1328 +/*
  1.1329 +** Write an identifier onto the end of the given string.  Add
  1.1330 +** quote characters as needed.
  1.1331 +*/
  1.1332 +static void identPut(char *z, int *pIdx, char *zSignedIdent){
  1.1333 +  unsigned char *zIdent = (unsigned char*)zSignedIdent;
  1.1334 +  int i, j, needQuote;
  1.1335 +  i = *pIdx;
  1.1336 +  for(j=0; zIdent[j]; j++){
  1.1337 +    if( !isalnum(zIdent[j]) && zIdent[j]!='_' ) break;
  1.1338 +  }
  1.1339 +  needQuote =  zIdent[j]!=0 || isdigit(zIdent[0])
  1.1340 +                  || sqlite3KeywordCode(zIdent, j)!=TK_ID;
  1.1341 +  if( needQuote ) z[i++] = '"';
  1.1342 +  for(j=0; zIdent[j]; j++){
  1.1343 +    z[i++] = zIdent[j];
  1.1344 +    if( zIdent[j]=='"' ) z[i++] = '"';
  1.1345 +  }
  1.1346 +  if( needQuote ) z[i++] = '"';
  1.1347 +  z[i] = 0;
  1.1348 +  *pIdx = i;
  1.1349 +}
  1.1350 +
  1.1351 +/*
  1.1352 +** Generate a CREATE TABLE statement appropriate for the given
  1.1353 +** table.  Memory to hold the text of the statement is obtained
  1.1354 +** from sqliteMalloc() and must be freed by the calling function.
  1.1355 +*/
  1.1356 +static char *createTableStmt(sqlite3 *db, Table *p, int isTemp){
  1.1357 +  int i, k, n;
  1.1358 +  char *zStmt;
  1.1359 +  char *zSep, *zSep2, *zEnd, *z;
  1.1360 +  Column *pCol;
  1.1361 +  n = 0;
  1.1362 +  for(pCol = p->aCol, i=0; i<p->nCol; i++, pCol++){
  1.1363 +    n += identLength(pCol->zName);
  1.1364 +    z = pCol->zType;
  1.1365 +    if( z ){
  1.1366 +      n += (strlen(z) + 1);
  1.1367 +    }
  1.1368 +  }
  1.1369 +  n += identLength(p->zName);
  1.1370 +  if( n<50 ){
  1.1371 +    zSep = "";
  1.1372 +    zSep2 = ",";
  1.1373 +    zEnd = ")";
  1.1374 +  }else{
  1.1375 +    zSep = "\n  ";
  1.1376 +    zSep2 = ",\n  ";
  1.1377 +    zEnd = "\n)";
  1.1378 +  }
  1.1379 +  n += 35 + 6*p->nCol;
  1.1380 +  zStmt = sqlite3Malloc( n );
  1.1381 +  if( zStmt==0 ){
  1.1382 +    db->mallocFailed = 1;
  1.1383 +    return 0;
  1.1384 +  }
  1.1385 +  sqlite3_snprintf(n, zStmt,
  1.1386 +                  !OMIT_TEMPDB&&isTemp ? "CREATE TEMP TABLE ":"CREATE TABLE ");
  1.1387 +  k = strlen(zStmt);
  1.1388 +  identPut(zStmt, &k, p->zName);
  1.1389 +  zStmt[k++] = '(';
  1.1390 +  for(pCol=p->aCol, i=0; i<p->nCol; i++, pCol++){
  1.1391 +    sqlite3_snprintf(n-k, &zStmt[k], zSep);
  1.1392 +    k += strlen(&zStmt[k]);
  1.1393 +    zSep = zSep2;
  1.1394 +    identPut(zStmt, &k, pCol->zName);
  1.1395 +    if( (z = pCol->zType)!=0 ){
  1.1396 +      zStmt[k++] = ' ';
  1.1397 +      assert( strlen(z)+k+1<=n );
  1.1398 +      sqlite3_snprintf(n-k, &zStmt[k], "%s", z);
  1.1399 +      k += strlen(z);
  1.1400 +    }
  1.1401 +  }
  1.1402 +  sqlite3_snprintf(n-k, &zStmt[k], "%s", zEnd);
  1.1403 +  return zStmt;
  1.1404 +}
  1.1405 +
  1.1406 +/*
  1.1407 +** This routine is called to report the final ")" that terminates
  1.1408 +** a CREATE TABLE statement.
  1.1409 +**
  1.1410 +** The table structure that other action routines have been building
  1.1411 +** is added to the internal hash tables, assuming no errors have
  1.1412 +** occurred.
  1.1413 +**
  1.1414 +** An entry for the table is made in the master table on disk, unless
  1.1415 +** this is a temporary table or db->init.busy==1.  When db->init.busy==1
  1.1416 +** it means we are reading the sqlite_master table because we just
  1.1417 +** connected to the database or because the sqlite_master table has
  1.1418 +** recently changed, so the entry for this table already exists in
  1.1419 +** the sqlite_master table.  We do not want to create it again.
  1.1420 +**
  1.1421 +** If the pSelect argument is not NULL, it means that this routine
  1.1422 +** was called to create a table generated from a 
  1.1423 +** "CREATE TABLE ... AS SELECT ..." statement.  The column names of
  1.1424 +** the new table will match the result set of the SELECT.
  1.1425 +*/
  1.1426 +void sqlite3EndTable(
  1.1427 +  Parse *pParse,          /* Parse context */
  1.1428 +  Token *pCons,           /* The ',' token after the last column defn. */
  1.1429 +  Token *pEnd,            /* The final ')' token in the CREATE TABLE */
  1.1430 +  Select *pSelect         /* Select from a "CREATE ... AS SELECT" */
  1.1431 +){
  1.1432 +  Table *p;
  1.1433 +  sqlite3 *db = pParse->db;
  1.1434 +  int iDb;
  1.1435 +
  1.1436 +  if( (pEnd==0 && pSelect==0) || pParse->nErr || db->mallocFailed ) {
  1.1437 +    return;
  1.1438 +  }
  1.1439 +  p = pParse->pNewTable;
  1.1440 +  if( p==0 ) return;
  1.1441 +
  1.1442 +  assert( !db->init.busy || !pSelect );
  1.1443 +
  1.1444 +  iDb = sqlite3SchemaToIndex(db, p->pSchema);
  1.1445 +
  1.1446 +#ifndef SQLITE_OMIT_CHECK
  1.1447 +  /* Resolve names in all CHECK constraint expressions.
  1.1448 +  */
  1.1449 +  if( p->pCheck ){
  1.1450 +    SrcList sSrc;                   /* Fake SrcList for pParse->pNewTable */
  1.1451 +    NameContext sNC;                /* Name context for pParse->pNewTable */
  1.1452 +
  1.1453 +    memset(&sNC, 0, sizeof(sNC));
  1.1454 +    memset(&sSrc, 0, sizeof(sSrc));
  1.1455 +    sSrc.nSrc = 1;
  1.1456 +    sSrc.a[0].zName = p->zName;
  1.1457 +    sSrc.a[0].pTab = p;
  1.1458 +    sSrc.a[0].iCursor = -1;
  1.1459 +    sNC.pParse = pParse;
  1.1460 +    sNC.pSrcList = &sSrc;
  1.1461 +    sNC.isCheck = 1;
  1.1462 +    if( sqlite3ExprResolveNames(&sNC, p->pCheck) ){
  1.1463 +      return;
  1.1464 +    }
  1.1465 +  }
  1.1466 +#endif /* !defined(SQLITE_OMIT_CHECK) */
  1.1467 +
  1.1468 +  /* If the db->init.busy is 1 it means we are reading the SQL off the
  1.1469 +  ** "sqlite_master" or "sqlite_temp_master" table on the disk.
  1.1470 +  ** So do not write to the disk again.  Extract the root page number
  1.1471 +  ** for the table from the db->init.newTnum field.  (The page number
  1.1472 +  ** should have been put there by the sqliteOpenCb routine.)
  1.1473 +  */
  1.1474 +  if( db->init.busy ){
  1.1475 +    p->tnum = db->init.newTnum;
  1.1476 +  }
  1.1477 +
  1.1478 +  /* If not initializing, then create a record for the new table
  1.1479 +  ** in the SQLITE_MASTER table of the database.  The record number
  1.1480 +  ** for the new table entry should already be on the stack.
  1.1481 +  **
  1.1482 +  ** If this is a TEMPORARY table, write the entry into the auxiliary
  1.1483 +  ** file instead of into the main database file.
  1.1484 +  */
  1.1485 +  if( !db->init.busy ){
  1.1486 +    int n;
  1.1487 +    Vdbe *v;
  1.1488 +    char *zType;    /* "view" or "table" */
  1.1489 +    char *zType2;   /* "VIEW" or "TABLE" */
  1.1490 +    char *zStmt;    /* Text of the CREATE TABLE or CREATE VIEW statement */
  1.1491 +
  1.1492 +    v = sqlite3GetVdbe(pParse);
  1.1493 +    if( v==0 ) return;
  1.1494 +
  1.1495 +    sqlite3VdbeAddOp1(v, OP_Close, 0);
  1.1496 +
  1.1497 +    /* Create the rootpage for the new table and push it onto the stack.
  1.1498 +    ** A view has no rootpage, so just push a zero onto the stack for
  1.1499 +    ** views.  Initialize zType at the same time.
  1.1500 +    */
  1.1501 +    if( p->pSelect==0 ){
  1.1502 +      /* A regular table */
  1.1503 +      zType = "table";
  1.1504 +      zType2 = "TABLE";
  1.1505 +#ifndef SQLITE_OMIT_VIEW
  1.1506 +    }else{
  1.1507 +      /* A view */
  1.1508 +      zType = "view";
  1.1509 +      zType2 = "VIEW";
  1.1510 +#endif
  1.1511 +    }
  1.1512 +
  1.1513 +    /* If this is a CREATE TABLE xx AS SELECT ..., execute the SELECT
  1.1514 +    ** statement to populate the new table. The root-page number for the
  1.1515 +    ** new table is on the top of the vdbe stack.
  1.1516 +    **
  1.1517 +    ** Once the SELECT has been coded by sqlite3Select(), it is in a
  1.1518 +    ** suitable state to query for the column names and types to be used
  1.1519 +    ** by the new table.
  1.1520 +    **
  1.1521 +    ** A shared-cache write-lock is not required to write to the new table,
  1.1522 +    ** as a schema-lock must have already been obtained to create it. Since
  1.1523 +    ** a schema-lock excludes all other database users, the write-lock would
  1.1524 +    ** be redundant.
  1.1525 +    */
  1.1526 +    if( pSelect ){
  1.1527 +      SelectDest dest;
  1.1528 +      Table *pSelTab;
  1.1529 +
  1.1530 +      assert(pParse->nTab==0);
  1.1531 +      sqlite3VdbeAddOp3(v, OP_OpenWrite, 1, pParse->regRoot, iDb);
  1.1532 +      sqlite3VdbeChangeP5(v, 1);
  1.1533 +      pParse->nTab = 2;
  1.1534 +      sqlite3SelectDestInit(&dest, SRT_Table, 1);
  1.1535 +      sqlite3Select(pParse, pSelect, &dest, 0, 0, 0);
  1.1536 +      sqlite3VdbeAddOp1(v, OP_Close, 1);
  1.1537 +      if( pParse->nErr==0 ){
  1.1538 +        pSelTab = sqlite3ResultSetOfSelect(pParse, 0, pSelect);
  1.1539 +        if( pSelTab==0 ) return;
  1.1540 +        assert( p->aCol==0 );
  1.1541 +        p->nCol = pSelTab->nCol;
  1.1542 +        p->aCol = pSelTab->aCol;
  1.1543 +        pSelTab->nCol = 0;
  1.1544 +        pSelTab->aCol = 0;
  1.1545 +        sqlite3DeleteTable(pSelTab);
  1.1546 +      }
  1.1547 +    }
  1.1548 +
  1.1549 +    /* Compute the complete text of the CREATE statement */
  1.1550 +    if( pSelect ){
  1.1551 +      zStmt = createTableStmt(db, p, p->pSchema==db->aDb[1].pSchema);
  1.1552 +    }else{
  1.1553 +      n = pEnd->z - pParse->sNameToken.z + 1;
  1.1554 +      zStmt = sqlite3MPrintf(db, 
  1.1555 +          "CREATE %s %.*s", zType2, n, pParse->sNameToken.z
  1.1556 +      );
  1.1557 +    }
  1.1558 +
  1.1559 +    /* A slot for the record has already been allocated in the 
  1.1560 +    ** SQLITE_MASTER table.  We just need to update that slot with all
  1.1561 +    ** the information we've collected.  The rowid for the preallocated
  1.1562 +    ** slot is the 2nd item on the stack.  The top of the stack is the
  1.1563 +    ** root page for the new table (or a 0 if this is a view).
  1.1564 +    */
  1.1565 +    sqlite3NestedParse(pParse,
  1.1566 +      "UPDATE %Q.%s "
  1.1567 +         "SET type='%s', name=%Q, tbl_name=%Q, rootpage=#%d, sql=%Q "
  1.1568 +       "WHERE rowid=#%d",
  1.1569 +      db->aDb[iDb].zName, SCHEMA_TABLE(iDb),
  1.1570 +      zType,
  1.1571 +      p->zName,
  1.1572 +      p->zName,
  1.1573 +      pParse->regRoot,
  1.1574 +      zStmt,
  1.1575 +      pParse->regRowid
  1.1576 +    );
  1.1577 +    sqlite3DbFree(db, zStmt);
  1.1578 +    sqlite3ChangeCookie(pParse, iDb);
  1.1579 +
  1.1580 +#ifndef SQLITE_OMIT_AUTOINCREMENT
  1.1581 +    /* Check to see if we need to create an sqlite_sequence table for
  1.1582 +    ** keeping track of autoincrement keys.
  1.1583 +    */
  1.1584 +    if( p->autoInc ){
  1.1585 +      Db *pDb = &db->aDb[iDb];
  1.1586 +      if( pDb->pSchema->pSeqTab==0 ){
  1.1587 +        sqlite3NestedParse(pParse,
  1.1588 +          "CREATE TABLE %Q.sqlite_sequence(name,seq)",
  1.1589 +          pDb->zName
  1.1590 +        );
  1.1591 +      }
  1.1592 +    }
  1.1593 +#endif
  1.1594 +
  1.1595 +    /* Reparse everything to update our internal data structures */
  1.1596 +    sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 0, 0,
  1.1597 +        sqlite3MPrintf(db, "tbl_name='%q'",p->zName), P4_DYNAMIC);
  1.1598 +  }
  1.1599 +
  1.1600 +
  1.1601 +  /* Add the table to the in-memory representation of the database.
  1.1602 +  */
  1.1603 +  if( db->init.busy && pParse->nErr==0 ){
  1.1604 +    Table *pOld;
  1.1605 +    FKey *pFKey; 
  1.1606 +    Schema *pSchema = p->pSchema;
  1.1607 +    pOld = sqlite3HashInsert(&pSchema->tblHash, p->zName, strlen(p->zName)+1,p);
  1.1608 +    if( pOld ){
  1.1609 +      assert( p==pOld );  /* Malloc must have failed inside HashInsert() */
  1.1610 +      db->mallocFailed = 1;
  1.1611 +      return;
  1.1612 +    }
  1.1613 +#ifndef SQLITE_OMIT_FOREIGN_KEY
  1.1614 +    for(pFKey=p->pFKey; pFKey; pFKey=pFKey->pNextFrom){
  1.1615 +      void *data;
  1.1616 +      int nTo = strlen(pFKey->zTo) + 1;
  1.1617 +      pFKey->pNextTo = sqlite3HashFind(&pSchema->aFKey, pFKey->zTo, nTo);
  1.1618 +      data = sqlite3HashInsert(&pSchema->aFKey, pFKey->zTo, nTo, pFKey);
  1.1619 +      if( data==(void *)pFKey ){
  1.1620 +        db->mallocFailed = 1;
  1.1621 +      }
  1.1622 +    }
  1.1623 +#endif
  1.1624 +    pParse->pNewTable = 0;
  1.1625 +    db->nTable++;
  1.1626 +    db->flags |= SQLITE_InternChanges;
  1.1627 +
  1.1628 +#ifndef SQLITE_OMIT_ALTERTABLE
  1.1629 +    if( !p->pSelect ){
  1.1630 +      const char *zName = (const char *)pParse->sNameToken.z;
  1.1631 +      int nName;
  1.1632 +      assert( !pSelect && pCons && pEnd );
  1.1633 +      if( pCons->z==0 ){
  1.1634 +        pCons = pEnd;
  1.1635 +      }
  1.1636 +      nName = (const char *)pCons->z - zName;
  1.1637 +      p->addColOffset = 13 + sqlite3Utf8CharLen(zName, nName);
  1.1638 +    }
  1.1639 +#endif
  1.1640 +  }
  1.1641 +}
  1.1642 +
  1.1643 +#ifndef SQLITE_OMIT_VIEW
  1.1644 +/*
  1.1645 +** The parser calls this routine in order to create a new VIEW
  1.1646 +*/
  1.1647 +void sqlite3CreateView(
  1.1648 +  Parse *pParse,     /* The parsing context */
  1.1649 +  Token *pBegin,     /* The CREATE token that begins the statement */
  1.1650 +  Token *pName1,     /* The token that holds the name of the view */
  1.1651 +  Token *pName2,     /* The token that holds the name of the view */
  1.1652 +  Select *pSelect,   /* A SELECT statement that will become the new view */
  1.1653 +  int isTemp,        /* TRUE for a TEMPORARY view */
  1.1654 +  int noErr          /* Suppress error messages if VIEW already exists */
  1.1655 +){
  1.1656 +  Table *p;
  1.1657 +  int n;
  1.1658 +  const unsigned char *z;
  1.1659 +  Token sEnd;
  1.1660 +  DbFixer sFix;
  1.1661 +  Token *pName;
  1.1662 +  int iDb;
  1.1663 +  sqlite3 *db = pParse->db;
  1.1664 +
  1.1665 +  if( pParse->nVar>0 ){
  1.1666 +    sqlite3ErrorMsg(pParse, "parameters are not allowed in views");
  1.1667 +    sqlite3SelectDelete(db, pSelect);
  1.1668 +    return;
  1.1669 +  }
  1.1670 +  sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr);
  1.1671 +  p = pParse->pNewTable;
  1.1672 +  if( p==0 || pParse->nErr ){
  1.1673 +    sqlite3SelectDelete(db, pSelect);
  1.1674 +    return;
  1.1675 +  }
  1.1676 +  sqlite3TwoPartName(pParse, pName1, pName2, &pName);
  1.1677 +  iDb = sqlite3SchemaToIndex(db, p->pSchema);
  1.1678 +  if( sqlite3FixInit(&sFix, pParse, iDb, "view", pName)
  1.1679 +    && sqlite3FixSelect(&sFix, pSelect)
  1.1680 +  ){
  1.1681 +    sqlite3SelectDelete(db, pSelect);
  1.1682 +    return;
  1.1683 +  }
  1.1684 +
  1.1685 +  /* Make a copy of the entire SELECT statement that defines the view.
  1.1686 +  ** This will force all the Expr.token.z values to be dynamically
  1.1687 +  ** allocated rather than point to the input string - which means that
  1.1688 +  ** they will persist after the current sqlite3_exec() call returns.
  1.1689 +  */
  1.1690 +  p->pSelect = sqlite3SelectDup(db, pSelect);
  1.1691 +  sqlite3SelectDelete(db, pSelect);
  1.1692 +  if( db->mallocFailed ){
  1.1693 +    return;
  1.1694 +  }
  1.1695 +  if( !db->init.busy ){
  1.1696 +    sqlite3ViewGetColumnNames(pParse, p);
  1.1697 +  }
  1.1698 +
  1.1699 +  /* Locate the end of the CREATE VIEW statement.  Make sEnd point to
  1.1700 +  ** the end.
  1.1701 +  */
  1.1702 +  sEnd = pParse->sLastToken;
  1.1703 +  if( sEnd.z[0]!=0 && sEnd.z[0]!=';' ){
  1.1704 +    sEnd.z += sEnd.n;
  1.1705 +  }
  1.1706 +  sEnd.n = 0;
  1.1707 +  n = sEnd.z - pBegin->z;
  1.1708 +  z = (const unsigned char*)pBegin->z;
  1.1709 +  while( n>0 && (z[n-1]==';' || isspace(z[n-1])) ){ n--; }
  1.1710 +  sEnd.z = &z[n-1];
  1.1711 +  sEnd.n = 1;
  1.1712 +
  1.1713 +  /* Use sqlite3EndTable() to add the view to the SQLITE_MASTER table */
  1.1714 +  sqlite3EndTable(pParse, 0, &sEnd, 0);
  1.1715 +  return;
  1.1716 +}
  1.1717 +#endif /* SQLITE_OMIT_VIEW */
  1.1718 +
  1.1719 +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE)
  1.1720 +/*
  1.1721 +** The Table structure pTable is really a VIEW.  Fill in the names of
  1.1722 +** the columns of the view in the pTable structure.  Return the number
  1.1723 +** of errors.  If an error is seen leave an error message in pParse->zErrMsg.
  1.1724 +*/
  1.1725 +int sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable){
  1.1726 +  Table *pSelTab;   /* A fake table from which we get the result set */
  1.1727 +  Select *pSel;     /* Copy of the SELECT that implements the view */
  1.1728 +  int nErr = 0;     /* Number of errors encountered */
  1.1729 +  int n;            /* Temporarily holds the number of cursors assigned */
  1.1730 +  sqlite3 *db = pParse->db;  /* Database connection for malloc errors */
  1.1731 +  int (*xAuth)(void*,int,const char*,const char*,const char*,const char*);
  1.1732 +
  1.1733 +  assert( pTable );
  1.1734 +
  1.1735 +#ifndef SQLITE_OMIT_VIRTUALTABLE
  1.1736 +  if( sqlite3VtabCallConnect(pParse, pTable) ){
  1.1737 +    return SQLITE_ERROR;
  1.1738 +  }
  1.1739 +  if( IsVirtual(pTable) ) return 0;
  1.1740 +#endif
  1.1741 +
  1.1742 +#ifndef SQLITE_OMIT_VIEW
  1.1743 +  /* A positive nCol means the columns names for this view are
  1.1744 +  ** already known.
  1.1745 +  */
  1.1746 +  if( pTable->nCol>0 ) return 0;
  1.1747 +
  1.1748 +  /* A negative nCol is a special marker meaning that we are currently
  1.1749 +  ** trying to compute the column names.  If we enter this routine with
  1.1750 +  ** a negative nCol, it means two or more views form a loop, like this:
  1.1751 +  **
  1.1752 +  **     CREATE VIEW one AS SELECT * FROM two;
  1.1753 +  **     CREATE VIEW two AS SELECT * FROM one;
  1.1754 +  **
  1.1755 +  ** Actually, this error is caught previously and so the following test
  1.1756 +  ** should always fail.  But we will leave it in place just to be safe.
  1.1757 +  */
  1.1758 +  if( pTable->nCol<0 ){
  1.1759 +    sqlite3ErrorMsg(pParse, "view %s is circularly defined", pTable->zName);
  1.1760 +    return 1;
  1.1761 +  }
  1.1762 +  assert( pTable->nCol>=0 );
  1.1763 +
  1.1764 +  /* If we get this far, it means we need to compute the table names.
  1.1765 +  ** Note that the call to sqlite3ResultSetOfSelect() will expand any
  1.1766 +  ** "*" elements in the results set of the view and will assign cursors
  1.1767 +  ** to the elements of the FROM clause.  But we do not want these changes
  1.1768 +  ** to be permanent.  So the computation is done on a copy of the SELECT
  1.1769 +  ** statement that defines the view.
  1.1770 +  */
  1.1771 +  assert( pTable->pSelect );
  1.1772 +  pSel = sqlite3SelectDup(db, pTable->pSelect);
  1.1773 +  if( pSel ){
  1.1774 +    n = pParse->nTab;
  1.1775 +    sqlite3SrcListAssignCursors(pParse, pSel->pSrc);
  1.1776 +    pTable->nCol = -1;
  1.1777 +#ifndef SQLITE_OMIT_AUTHORIZATION
  1.1778 +    xAuth = db->xAuth;
  1.1779 +    db->xAuth = 0;
  1.1780 +    pSelTab = sqlite3ResultSetOfSelect(pParse, 0, pSel);
  1.1781 +    db->xAuth = xAuth;
  1.1782 +#else
  1.1783 +    pSelTab = sqlite3ResultSetOfSelect(pParse, 0, pSel);
  1.1784 +#endif
  1.1785 +    pParse->nTab = n;
  1.1786 +    if( pSelTab ){
  1.1787 +      assert( pTable->aCol==0 );
  1.1788 +      pTable->nCol = pSelTab->nCol;
  1.1789 +      pTable->aCol = pSelTab->aCol;
  1.1790 +      pSelTab->nCol = 0;
  1.1791 +      pSelTab->aCol = 0;
  1.1792 +      sqlite3DeleteTable(pSelTab);
  1.1793 +      pTable->pSchema->flags |= DB_UnresetViews;
  1.1794 +    }else{
  1.1795 +      pTable->nCol = 0;
  1.1796 +      nErr++;
  1.1797 +    }
  1.1798 +    sqlite3SelectDelete(db, pSel);
  1.1799 +  } else {
  1.1800 +    nErr++;
  1.1801 +  }
  1.1802 +#endif /* SQLITE_OMIT_VIEW */
  1.1803 +  return nErr;  
  1.1804 +}
  1.1805 +#endif /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */
  1.1806 +
  1.1807 +#ifndef SQLITE_OMIT_VIEW
  1.1808 +/*
  1.1809 +** Clear the column names from every VIEW in database idx.
  1.1810 +*/
  1.1811 +static void sqliteViewResetAll(sqlite3 *db, int idx){
  1.1812 +  HashElem *i;
  1.1813 +  if( !DbHasProperty(db, idx, DB_UnresetViews) ) return;
  1.1814 +  for(i=sqliteHashFirst(&db->aDb[idx].pSchema->tblHash); i;i=sqliteHashNext(i)){
  1.1815 +    Table *pTab = sqliteHashData(i);
  1.1816 +    if( pTab->pSelect ){
  1.1817 +      sqliteResetColumnNames(pTab);
  1.1818 +    }
  1.1819 +  }
  1.1820 +  DbClearProperty(db, idx, DB_UnresetViews);
  1.1821 +}
  1.1822 +#else
  1.1823 +# define sqliteViewResetAll(A,B)
  1.1824 +#endif /* SQLITE_OMIT_VIEW */
  1.1825 +
  1.1826 +/*
  1.1827 +** This function is called by the VDBE to adjust the internal schema
  1.1828 +** used by SQLite when the btree layer moves a table root page. The
  1.1829 +** root-page of a table or index in database iDb has changed from iFrom
  1.1830 +** to iTo.
  1.1831 +**
  1.1832 +** Ticket #1728:  The symbol table might still contain information
  1.1833 +** on tables and/or indices that are the process of being deleted.
  1.1834 +** If you are unlucky, one of those deleted indices or tables might
  1.1835 +** have the same rootpage number as the real table or index that is
  1.1836 +** being moved.  So we cannot stop searching after the first match 
  1.1837 +** because the first match might be for one of the deleted indices
  1.1838 +** or tables and not the table/index that is actually being moved.
  1.1839 +** We must continue looping until all tables and indices with
  1.1840 +** rootpage==iFrom have been converted to have a rootpage of iTo
  1.1841 +** in order to be certain that we got the right one.
  1.1842 +*/
  1.1843 +#ifndef SQLITE_OMIT_AUTOVACUUM
  1.1844 +void sqlite3RootPageMoved(Db *pDb, int iFrom, int iTo){
  1.1845 +  HashElem *pElem;
  1.1846 +  Hash *pHash;
  1.1847 +
  1.1848 +  pHash = &pDb->pSchema->tblHash;
  1.1849 +  for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
  1.1850 +    Table *pTab = sqliteHashData(pElem);
  1.1851 +    if( pTab->tnum==iFrom ){
  1.1852 +      pTab->tnum = iTo;
  1.1853 +    }
  1.1854 +  }
  1.1855 +  pHash = &pDb->pSchema->idxHash;
  1.1856 +  for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
  1.1857 +    Index *pIdx = sqliteHashData(pElem);
  1.1858 +    if( pIdx->tnum==iFrom ){
  1.1859 +      pIdx->tnum = iTo;
  1.1860 +    }
  1.1861 +  }
  1.1862 +}
  1.1863 +#endif
  1.1864 +
  1.1865 +/*
  1.1866 +** Write code to erase the table with root-page iTable from database iDb.
  1.1867 +** Also write code to modify the sqlite_master table and internal schema
  1.1868 +** if a root-page of another table is moved by the btree-layer whilst
  1.1869 +** erasing iTable (this can happen with an auto-vacuum database).
  1.1870 +*/ 
  1.1871 +static void destroyRootPage(Parse *pParse, int iTable, int iDb){
  1.1872 +  Vdbe *v = sqlite3GetVdbe(pParse);
  1.1873 +  int r1 = sqlite3GetTempReg(pParse);
  1.1874 +  sqlite3VdbeAddOp3(v, OP_Destroy, iTable, r1, iDb);
  1.1875 +#ifndef SQLITE_OMIT_AUTOVACUUM
  1.1876 +  /* OP_Destroy stores an in integer r1. If this integer
  1.1877 +  ** is non-zero, then it is the root page number of a table moved to
  1.1878 +  ** location iTable. The following code modifies the sqlite_master table to
  1.1879 +  ** reflect this.
  1.1880 +  **
  1.1881 +  ** The "#%d" in the SQL is a special constant that means whatever value
  1.1882 +  ** is on the top of the stack.  See sqlite3RegisterExpr().
  1.1883 +  */
  1.1884 +  sqlite3NestedParse(pParse, 
  1.1885 +     "UPDATE %Q.%s SET rootpage=%d WHERE #%d AND rootpage=#%d",
  1.1886 +     pParse->db->aDb[iDb].zName, SCHEMA_TABLE(iDb), iTable, r1, r1);
  1.1887 +#endif
  1.1888 +  sqlite3ReleaseTempReg(pParse, r1);
  1.1889 +}
  1.1890 +
  1.1891 +/*
  1.1892 +** Write VDBE code to erase table pTab and all associated indices on disk.
  1.1893 +** Code to update the sqlite_master tables and internal schema definitions
  1.1894 +** in case a root-page belonging to another table is moved by the btree layer
  1.1895 +** is also added (this can happen with an auto-vacuum database).
  1.1896 +*/
  1.1897 +static void destroyTable(Parse *pParse, Table *pTab){
  1.1898 +#ifdef SQLITE_OMIT_AUTOVACUUM
  1.1899 +  Index *pIdx;
  1.1900 +  int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
  1.1901 +  destroyRootPage(pParse, pTab->tnum, iDb);
  1.1902 +  for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
  1.1903 +    destroyRootPage(pParse, pIdx->tnum, iDb);
  1.1904 +  }
  1.1905 +#else
  1.1906 +  /* If the database may be auto-vacuum capable (if SQLITE_OMIT_AUTOVACUUM
  1.1907 +  ** is not defined), then it is important to call OP_Destroy on the
  1.1908 +  ** table and index root-pages in order, starting with the numerically 
  1.1909 +  ** largest root-page number. This guarantees that none of the root-pages
  1.1910 +  ** to be destroyed is relocated by an earlier OP_Destroy. i.e. if the
  1.1911 +  ** following were coded:
  1.1912 +  **
  1.1913 +  ** OP_Destroy 4 0
  1.1914 +  ** ...
  1.1915 +  ** OP_Destroy 5 0
  1.1916 +  **
  1.1917 +  ** and root page 5 happened to be the largest root-page number in the
  1.1918 +  ** database, then root page 5 would be moved to page 4 by the 
  1.1919 +  ** "OP_Destroy 4 0" opcode. The subsequent "OP_Destroy 5 0" would hit
  1.1920 +  ** a free-list page.
  1.1921 +  */
  1.1922 +  int iTab = pTab->tnum;
  1.1923 +  int iDestroyed = 0;
  1.1924 +
  1.1925 +  while( 1 ){
  1.1926 +    Index *pIdx;
  1.1927 +    int iLargest = 0;
  1.1928 +
  1.1929 +    if( iDestroyed==0 || iTab<iDestroyed ){
  1.1930 +      iLargest = iTab;
  1.1931 +    }
  1.1932 +    for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
  1.1933 +      int iIdx = pIdx->tnum;
  1.1934 +      assert( pIdx->pSchema==pTab->pSchema );
  1.1935 +      if( (iDestroyed==0 || (iIdx<iDestroyed)) && iIdx>iLargest ){
  1.1936 +        iLargest = iIdx;
  1.1937 +      }
  1.1938 +    }
  1.1939 +    if( iLargest==0 ){
  1.1940 +      return;
  1.1941 +    }else{
  1.1942 +      int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
  1.1943 +      destroyRootPage(pParse, iLargest, iDb);
  1.1944 +      iDestroyed = iLargest;
  1.1945 +    }
  1.1946 +  }
  1.1947 +#endif
  1.1948 +}
  1.1949 +
  1.1950 +/*
  1.1951 +** This routine is called to do the work of a DROP TABLE statement.
  1.1952 +** pName is the name of the table to be dropped.
  1.1953 +*/
  1.1954 +void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
  1.1955 +  Table *pTab;
  1.1956 +  Vdbe *v;
  1.1957 +  sqlite3 *db = pParse->db;
  1.1958 +  int iDb;
  1.1959 +
  1.1960 +  if( pParse->nErr || db->mallocFailed ){
  1.1961 +    goto exit_drop_table;
  1.1962 +  }
  1.1963 +  assert( pName->nSrc==1 );
  1.1964 +  pTab = sqlite3LocateTable(pParse, isView, 
  1.1965 +                            pName->a[0].zName, pName->a[0].zDatabase);
  1.1966 +
  1.1967 +  if( pTab==0 ){
  1.1968 +    if( noErr ){
  1.1969 +      sqlite3ErrorClear(pParse);
  1.1970 +    }
  1.1971 +    goto exit_drop_table;
  1.1972 +  }
  1.1973 +  iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
  1.1974 +  assert( iDb>=0 && iDb<db->nDb );
  1.1975 +
  1.1976 +  /* If pTab is a virtual table, call ViewGetColumnNames() to ensure
  1.1977 +  ** it is initialized.
  1.1978 +  */
  1.1979 +  if( IsVirtual(pTab) && sqlite3ViewGetColumnNames(pParse, pTab) ){
  1.1980 +    goto exit_drop_table;
  1.1981 +  }
  1.1982 +#ifndef SQLITE_OMIT_AUTHORIZATION
  1.1983 +  {
  1.1984 +    int code;
  1.1985 +    const char *zTab = SCHEMA_TABLE(iDb);
  1.1986 +    const char *zDb = db->aDb[iDb].zName;
  1.1987 +    const char *zArg2 = 0;
  1.1988 +    if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb)){
  1.1989 +      goto exit_drop_table;
  1.1990 +    }
  1.1991 +    if( isView ){
  1.1992 +      if( !OMIT_TEMPDB && iDb==1 ){
  1.1993 +        code = SQLITE_DROP_TEMP_VIEW;
  1.1994 +      }else{
  1.1995 +        code = SQLITE_DROP_VIEW;
  1.1996 +      }
  1.1997 +#ifndef SQLITE_OMIT_VIRTUALTABLE
  1.1998 +    }else if( IsVirtual(pTab) ){
  1.1999 +      code = SQLITE_DROP_VTABLE;
  1.2000 +      zArg2 = pTab->pMod->zName;
  1.2001 +#endif
  1.2002 +    }else{
  1.2003 +      if( !OMIT_TEMPDB && iDb==1 ){
  1.2004 +        code = SQLITE_DROP_TEMP_TABLE;
  1.2005 +      }else{
  1.2006 +        code = SQLITE_DROP_TABLE;
  1.2007 +      }
  1.2008 +    }
  1.2009 +    if( sqlite3AuthCheck(pParse, code, pTab->zName, zArg2, zDb) ){
  1.2010 +      goto exit_drop_table;
  1.2011 +    }
  1.2012 +    if( sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, zDb) ){
  1.2013 +      goto exit_drop_table;
  1.2014 +    }
  1.2015 +  }
  1.2016 +#endif
  1.2017 +  if( pTab->readOnly || pTab==db->aDb[iDb].pSchema->pSeqTab ){
  1.2018 +    sqlite3ErrorMsg(pParse, "table %s may not be dropped", pTab->zName);
  1.2019 +    goto exit_drop_table;
  1.2020 +  }
  1.2021 +
  1.2022 +#ifndef SQLITE_OMIT_VIEW
  1.2023 +  /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used
  1.2024 +  ** on a table.
  1.2025 +  */
  1.2026 +  if( isView && pTab->pSelect==0 ){
  1.2027 +    sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName);
  1.2028 +    goto exit_drop_table;
  1.2029 +  }
  1.2030 +  if( !isView && pTab->pSelect ){
  1.2031 +    sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName);
  1.2032 +    goto exit_drop_table;
  1.2033 +  }
  1.2034 +#endif
  1.2035 +
  1.2036 +  /* Generate code to remove the table from the master table
  1.2037 +  ** on disk.
  1.2038 +  */
  1.2039 +  v = sqlite3GetVdbe(pParse);
  1.2040 +  if( v ){
  1.2041 +    Trigger *pTrigger;
  1.2042 +    Db *pDb = &db->aDb[iDb];
  1.2043 +    sqlite3BeginWriteOperation(pParse, 1, iDb);
  1.2044 +
  1.2045 +#ifndef SQLITE_OMIT_VIRTUALTABLE
  1.2046 +    if( IsVirtual(pTab) ){
  1.2047 +      Vdbe *v = sqlite3GetVdbe(pParse);
  1.2048 +      if( v ){
  1.2049 +        sqlite3VdbeAddOp0(v, OP_VBegin);
  1.2050 +      }
  1.2051 +    }
  1.2052 +#endif
  1.2053 +
  1.2054 +    /* Drop all triggers associated with the table being dropped. Code
  1.2055 +    ** is generated to remove entries from sqlite_master and/or
  1.2056 +    ** sqlite_temp_master if required.
  1.2057 +    */
  1.2058 +    pTrigger = pTab->pTrigger;
  1.2059 +    while( pTrigger ){
  1.2060 +      assert( pTrigger->pSchema==pTab->pSchema || 
  1.2061 +          pTrigger->pSchema==db->aDb[1].pSchema );
  1.2062 +      sqlite3DropTriggerPtr(pParse, pTrigger);
  1.2063 +      pTrigger = pTrigger->pNext;
  1.2064 +    }
  1.2065 +
  1.2066 +#ifndef SQLITE_OMIT_AUTOINCREMENT
  1.2067 +    /* Remove any entries of the sqlite_sequence table associated with
  1.2068 +    ** the table being dropped. This is done before the table is dropped
  1.2069 +    ** at the btree level, in case the sqlite_sequence table needs to
  1.2070 +    ** move as a result of the drop (can happen in auto-vacuum mode).
  1.2071 +    */
  1.2072 +    if( pTab->autoInc ){
  1.2073 +      sqlite3NestedParse(pParse,
  1.2074 +        "DELETE FROM %s.sqlite_sequence WHERE name=%Q",
  1.2075 +        pDb->zName, pTab->zName
  1.2076 +      );
  1.2077 +    }
  1.2078 +#endif
  1.2079 +
  1.2080 +    /* Drop all SQLITE_MASTER table and index entries that refer to the
  1.2081 +    ** table. The program name loops through the master table and deletes
  1.2082 +    ** every row that refers to a table of the same name as the one being
  1.2083 +    ** dropped. Triggers are handled seperately because a trigger can be
  1.2084 +    ** created in the temp database that refers to a table in another
  1.2085 +    ** database.
  1.2086 +    */
  1.2087 +    sqlite3NestedParse(pParse, 
  1.2088 +        "DELETE FROM %Q.%s WHERE tbl_name=%Q and type!='trigger'",
  1.2089 +        pDb->zName, SCHEMA_TABLE(iDb), pTab->zName);
  1.2090 +
  1.2091 +    /* Drop any statistics from the sqlite_stat1 table, if it exists */
  1.2092 +    if( sqlite3FindTable(db, "sqlite_stat1", db->aDb[iDb].zName) ){
  1.2093 +      sqlite3NestedParse(pParse,
  1.2094 +        "DELETE FROM %Q.sqlite_stat1 WHERE tbl=%Q", pDb->zName, pTab->zName
  1.2095 +      );
  1.2096 +    }
  1.2097 +
  1.2098 +    if( !isView && !IsVirtual(pTab) ){
  1.2099 +      destroyTable(pParse, pTab);
  1.2100 +    }
  1.2101 +
  1.2102 +    /* Remove the table entry from SQLite's internal schema and modify
  1.2103 +    ** the schema cookie.
  1.2104 +    */
  1.2105 +    if( IsVirtual(pTab) ){
  1.2106 +      sqlite3VdbeAddOp4(v, OP_VDestroy, iDb, 0, 0, pTab->zName, 0);
  1.2107 +    }
  1.2108 +    sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0);
  1.2109 +    sqlite3ChangeCookie(pParse, iDb);
  1.2110 +  }
  1.2111 +  sqliteViewResetAll(db, iDb);
  1.2112 +
  1.2113 +exit_drop_table:
  1.2114 +  sqlite3SrcListDelete(db, pName);
  1.2115 +}
  1.2116 +
  1.2117 +/*
  1.2118 +** This routine is called to create a new foreign key on the table
  1.2119 +** currently under construction.  pFromCol determines which columns
  1.2120 +** in the current table point to the foreign key.  If pFromCol==0 then
  1.2121 +** connect the key to the last column inserted.  pTo is the name of
  1.2122 +** the table referred to.  pToCol is a list of tables in the other
  1.2123 +** pTo table that the foreign key points to.  flags contains all
  1.2124 +** information about the conflict resolution algorithms specified
  1.2125 +** in the ON DELETE, ON UPDATE and ON INSERT clauses.
  1.2126 +**
  1.2127 +** An FKey structure is created and added to the table currently
  1.2128 +** under construction in the pParse->pNewTable field.  The new FKey
  1.2129 +** is not linked into db->aFKey at this point - that does not happen
  1.2130 +** until sqlite3EndTable().
  1.2131 +**
  1.2132 +** The foreign key is set for IMMEDIATE processing.  A subsequent call
  1.2133 +** to sqlite3DeferForeignKey() might change this to DEFERRED.
  1.2134 +*/
  1.2135 +void sqlite3CreateForeignKey(
  1.2136 +  Parse *pParse,       /* Parsing context */
  1.2137 +  ExprList *pFromCol,  /* Columns in this table that point to other table */
  1.2138 +  Token *pTo,          /* Name of the other table */
  1.2139 +  ExprList *pToCol,    /* Columns in the other table */
  1.2140 +  int flags            /* Conflict resolution algorithms. */
  1.2141 +){
  1.2142 +#ifndef SQLITE_OMIT_FOREIGN_KEY
  1.2143 +  FKey *pFKey = 0;
  1.2144 +  Table *p = pParse->pNewTable;
  1.2145 +  int nByte;
  1.2146 +  int i;
  1.2147 +  int nCol;
  1.2148 +  char *z;
  1.2149 +  sqlite3 *db;
  1.2150 +
  1.2151 +  assert( pTo!=0 );
  1.2152 +  db = pParse->db;
  1.2153 +  if( p==0 || pParse->nErr || IN_DECLARE_VTAB ) goto fk_end;
  1.2154 +  if( pFromCol==0 ){
  1.2155 +    int iCol = p->nCol-1;
  1.2156 +    if( iCol<0 ) goto fk_end;
  1.2157 +    if( pToCol && pToCol->nExpr!=1 ){
  1.2158 +      sqlite3ErrorMsg(pParse, "foreign key on %s"
  1.2159 +         " should reference only one column of table %T",
  1.2160 +         p->aCol[iCol].zName, pTo);
  1.2161 +      goto fk_end;
  1.2162 +    }
  1.2163 +    nCol = 1;
  1.2164 +  }else if( pToCol && pToCol->nExpr!=pFromCol->nExpr ){
  1.2165 +    sqlite3ErrorMsg(pParse,
  1.2166 +        "number of columns in foreign key does not match the number of "
  1.2167 +        "columns in the referenced table");
  1.2168 +    goto fk_end;
  1.2169 +  }else{
  1.2170 +    nCol = pFromCol->nExpr;
  1.2171 +  }
  1.2172 +  nByte = sizeof(*pFKey) + nCol*sizeof(pFKey->aCol[0]) + pTo->n + 1;
  1.2173 +  if( pToCol ){
  1.2174 +    for(i=0; i<pToCol->nExpr; i++){
  1.2175 +      nByte += strlen(pToCol->a[i].zName) + 1;
  1.2176 +    }
  1.2177 +  }
  1.2178 +  pFKey = sqlite3DbMallocZero(db, nByte );
  1.2179 +  if( pFKey==0 ){
  1.2180 +    goto fk_end;
  1.2181 +  }
  1.2182 +  pFKey->pFrom = p;
  1.2183 +  pFKey->pNextFrom = p->pFKey;
  1.2184 +  z = (char*)&pFKey[1];
  1.2185 +  pFKey->aCol = (struct sColMap*)z;
  1.2186 +  z += sizeof(struct sColMap)*nCol;
  1.2187 +  pFKey->zTo = z;
  1.2188 +  memcpy(z, pTo->z, pTo->n);
  1.2189 +  z[pTo->n] = 0;
  1.2190 +  z += pTo->n+1;
  1.2191 +  pFKey->pNextTo = 0;
  1.2192 +  pFKey->nCol = nCol;
  1.2193 +  if( pFromCol==0 ){
  1.2194 +    pFKey->aCol[0].iFrom = p->nCol-1;
  1.2195 +  }else{
  1.2196 +    for(i=0; i<nCol; i++){
  1.2197 +      int j;
  1.2198 +      for(j=0; j<p->nCol; j++){
  1.2199 +        if( sqlite3StrICmp(p->aCol[j].zName, pFromCol->a[i].zName)==0 ){
  1.2200 +          pFKey->aCol[i].iFrom = j;
  1.2201 +          break;
  1.2202 +        }
  1.2203 +      }
  1.2204 +      if( j>=p->nCol ){
  1.2205 +        sqlite3ErrorMsg(pParse, 
  1.2206 +          "unknown column \"%s\" in foreign key definition", 
  1.2207 +          pFromCol->a[i].zName);
  1.2208 +        goto fk_end;
  1.2209 +      }
  1.2210 +    }
  1.2211 +  }
  1.2212 +  if( pToCol ){
  1.2213 +    for(i=0; i<nCol; i++){
  1.2214 +      int n = strlen(pToCol->a[i].zName);
  1.2215 +      pFKey->aCol[i].zCol = z;
  1.2216 +      memcpy(z, pToCol->a[i].zName, n);
  1.2217 +      z[n] = 0;
  1.2218 +      z += n+1;
  1.2219 +    }
  1.2220 +  }
  1.2221 +  pFKey->isDeferred = 0;
  1.2222 +  pFKey->deleteConf = flags & 0xff;
  1.2223 +  pFKey->updateConf = (flags >> 8 ) & 0xff;
  1.2224 +  pFKey->insertConf = (flags >> 16 ) & 0xff;
  1.2225 +
  1.2226 +  /* Link the foreign key to the table as the last step.
  1.2227 +  */
  1.2228 +  p->pFKey = pFKey;
  1.2229 +  pFKey = 0;
  1.2230 +
  1.2231 +fk_end:
  1.2232 +  sqlite3DbFree(db, pFKey);
  1.2233 +#endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */
  1.2234 +  sqlite3ExprListDelete(db, pFromCol);
  1.2235 +  sqlite3ExprListDelete(db, pToCol);
  1.2236 +}
  1.2237 +
  1.2238 +/*
  1.2239 +** This routine is called when an INITIALLY IMMEDIATE or INITIALLY DEFERRED
  1.2240 +** clause is seen as part of a foreign key definition.  The isDeferred
  1.2241 +** parameter is 1 for INITIALLY DEFERRED and 0 for INITIALLY IMMEDIATE.
  1.2242 +** The behavior of the most recently created foreign key is adjusted
  1.2243 +** accordingly.
  1.2244 +*/
  1.2245 +void sqlite3DeferForeignKey(Parse *pParse, int isDeferred){
  1.2246 +#ifndef SQLITE_OMIT_FOREIGN_KEY
  1.2247 +  Table *pTab;
  1.2248 +  FKey *pFKey;
  1.2249 +  if( (pTab = pParse->pNewTable)==0 || (pFKey = pTab->pFKey)==0 ) return;
  1.2250 +  pFKey->isDeferred = isDeferred;
  1.2251 +#endif
  1.2252 +}
  1.2253 +
  1.2254 +/*
  1.2255 +** Generate code that will erase and refill index *pIdx.  This is
  1.2256 +** used to initialize a newly created index or to recompute the
  1.2257 +** content of an index in response to a REINDEX command.
  1.2258 +**
  1.2259 +** if memRootPage is not negative, it means that the index is newly
  1.2260 +** created.  The register specified by memRootPage contains the
  1.2261 +** root page number of the index.  If memRootPage is negative, then
  1.2262 +** the index already exists and must be cleared before being refilled and
  1.2263 +** the root page number of the index is taken from pIndex->tnum.
  1.2264 +*/
  1.2265 +static void sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage){
  1.2266 +  Table *pTab = pIndex->pTable;  /* The table that is indexed */
  1.2267 +  int iTab = pParse->nTab;       /* Btree cursor used for pTab */
  1.2268 +  int iIdx = pParse->nTab+1;     /* Btree cursor used for pIndex */
  1.2269 +  int addr1;                     /* Address of top of loop */
  1.2270 +  int tnum;                      /* Root page of index */
  1.2271 +  Vdbe *v;                       /* Generate code into this virtual machine */
  1.2272 +  KeyInfo *pKey;                 /* KeyInfo for index */
  1.2273 +  int regIdxKey;                 /* Registers containing the index key */
  1.2274 +  int regRecord;                 /* Register holding assemblied index record */
  1.2275 +  sqlite3 *db = pParse->db;      /* The database connection */
  1.2276 +  int iDb = sqlite3SchemaToIndex(db, pIndex->pSchema);
  1.2277 +
  1.2278 +#ifndef SQLITE_OMIT_AUTHORIZATION
  1.2279 +  if( sqlite3AuthCheck(pParse, SQLITE_REINDEX, pIndex->zName, 0,
  1.2280 +      db->aDb[iDb].zName ) ){
  1.2281 +    return;
  1.2282 +  }
  1.2283 +#endif
  1.2284 +
  1.2285 +  /* Require a write-lock on the table to perform this operation */
  1.2286 +  sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName);
  1.2287 +
  1.2288 +  v = sqlite3GetVdbe(pParse);
  1.2289 +  if( v==0 ) return;
  1.2290 +  if( memRootPage>=0 ){
  1.2291 +    tnum = memRootPage;
  1.2292 +  }else{
  1.2293 +    tnum = pIndex->tnum;
  1.2294 +    sqlite3VdbeAddOp2(v, OP_Clear, tnum, iDb);
  1.2295 +  }
  1.2296 +  pKey = sqlite3IndexKeyinfo(pParse, pIndex);
  1.2297 +  sqlite3VdbeAddOp4(v, OP_OpenWrite, iIdx, tnum, iDb, 
  1.2298 +                    (char *)pKey, P4_KEYINFO_HANDOFF);
  1.2299 +  if( memRootPage>=0 ){
  1.2300 +    sqlite3VdbeChangeP5(v, 1);
  1.2301 +  }
  1.2302 +  sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
  1.2303 +  addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0);
  1.2304 +  regRecord = sqlite3GetTempReg(pParse);
  1.2305 +  regIdxKey = sqlite3GenerateIndexKey(pParse, pIndex, iTab, regRecord, 1);
  1.2306 +  if( pIndex->onError!=OE_None ){
  1.2307 +    int j1, j2;
  1.2308 +    int regRowid;
  1.2309 +
  1.2310 +    regRowid = regIdxKey + pIndex->nColumn;
  1.2311 +    j1 = sqlite3VdbeAddOp3(v, OP_IsNull, regIdxKey, 0, pIndex->nColumn);
  1.2312 +    j2 = sqlite3VdbeAddOp4(v, OP_IsUnique, iIdx,
  1.2313 +                           0, regRowid, SQLITE_INT_TO_PTR(regRecord), P4_INT32);
  1.2314 +    sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, OE_Abort, 0,
  1.2315 +                    "indexed columns are not unique", P4_STATIC);
  1.2316 +    sqlite3VdbeJumpHere(v, j1);
  1.2317 +    sqlite3VdbeJumpHere(v, j2);
  1.2318 +  }
  1.2319 +  sqlite3VdbeAddOp2(v, OP_IdxInsert, iIdx, regRecord);
  1.2320 +  sqlite3ReleaseTempReg(pParse, regRecord);
  1.2321 +  sqlite3VdbeAddOp2(v, OP_Next, iTab, addr1+1);
  1.2322 +  sqlite3VdbeJumpHere(v, addr1);
  1.2323 +  sqlite3VdbeAddOp1(v, OP_Close, iTab);
  1.2324 +  sqlite3VdbeAddOp1(v, OP_Close, iIdx);
  1.2325 +}
  1.2326 +
  1.2327 +/*
  1.2328 +** Create a new index for an SQL table.  pName1.pName2 is the name of the index 
  1.2329 +** and pTblList is the name of the table that is to be indexed.  Both will 
  1.2330 +** be NULL for a primary key or an index that is created to satisfy a
  1.2331 +** UNIQUE constraint.  If pTable and pIndex are NULL, use pParse->pNewTable
  1.2332 +** as the table to be indexed.  pParse->pNewTable is a table that is
  1.2333 +** currently being constructed by a CREATE TABLE statement.
  1.2334 +**
  1.2335 +** pList is a list of columns to be indexed.  pList will be NULL if this
  1.2336 +** is a primary key or unique-constraint on the most recent column added
  1.2337 +** to the table currently under construction.  
  1.2338 +*/
  1.2339 +void sqlite3CreateIndex(
  1.2340 +  Parse *pParse,     /* All information about this parse */
  1.2341 +  Token *pName1,     /* First part of index name. May be NULL */
  1.2342 +  Token *pName2,     /* Second part of index name. May be NULL */
  1.2343 +  SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */
  1.2344 +  ExprList *pList,   /* A list of columns to be indexed */
  1.2345 +  int onError,       /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
  1.2346 +  Token *pStart,     /* The CREATE token that begins this statement */
  1.2347 +  Token *pEnd,       /* The ")" that closes the CREATE INDEX statement */
  1.2348 +  int sortOrder,     /* Sort order of primary key when pList==NULL */
  1.2349 +  int ifNotExist     /* Omit error if index already exists */
  1.2350 +){
  1.2351 +  Table *pTab = 0;     /* Table to be indexed */
  1.2352 +  Index *pIndex = 0;   /* The index to be created */
  1.2353 +  char *zName = 0;     /* Name of the index */
  1.2354 +  int nName;           /* Number of characters in zName */
  1.2355 +  int i, j;
  1.2356 +  Token nullId;        /* Fake token for an empty ID list */
  1.2357 +  DbFixer sFix;        /* For assigning database names to pTable */
  1.2358 +  int sortOrderMask;   /* 1 to honor DESC in index.  0 to ignore. */
  1.2359 +  sqlite3 *db = pParse->db;
  1.2360 +  Db *pDb;             /* The specific table containing the indexed database */
  1.2361 +  int iDb;             /* Index of the database that is being written */
  1.2362 +  Token *pName = 0;    /* Unqualified name of the index to create */
  1.2363 +  struct ExprList_item *pListItem; /* For looping over pList */
  1.2364 +  int nCol;
  1.2365 +  int nExtra = 0;
  1.2366 +  char *zExtra;
  1.2367 +
  1.2368 +  if( pParse->nErr || db->mallocFailed || IN_DECLARE_VTAB ){
  1.2369 +    goto exit_create_index;
  1.2370 +  }
  1.2371 +
  1.2372 +  /*
  1.2373 +  ** Find the table that is to be indexed.  Return early if not found.
  1.2374 +  */
  1.2375 +  if( pTblName!=0 ){
  1.2376 +
  1.2377 +    /* Use the two-part index name to determine the database 
  1.2378 +    ** to search for the table. 'Fix' the table name to this db
  1.2379 +    ** before looking up the table.
  1.2380 +    */
  1.2381 +    assert( pName1 && pName2 );
  1.2382 +    iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
  1.2383 +    if( iDb<0 ) goto exit_create_index;
  1.2384 +
  1.2385 +#ifndef SQLITE_OMIT_TEMPDB
  1.2386 +    /* If the index name was unqualified, check if the the table
  1.2387 +    ** is a temp table. If so, set the database to 1. Do not do this
  1.2388 +    ** if initialising a database schema.
  1.2389 +    */
  1.2390 +    if( !db->init.busy ){
  1.2391 +      pTab = sqlite3SrcListLookup(pParse, pTblName);
  1.2392 +      if( pName2 && pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){
  1.2393 +        iDb = 1;
  1.2394 +      }
  1.2395 +    }
  1.2396 +#endif
  1.2397 +
  1.2398 +    if( sqlite3FixInit(&sFix, pParse, iDb, "index", pName) &&
  1.2399 +        sqlite3FixSrcList(&sFix, pTblName)
  1.2400 +    ){
  1.2401 +      /* Because the parser constructs pTblName from a single identifier,
  1.2402 +      ** sqlite3FixSrcList can never fail. */
  1.2403 +      assert(0);
  1.2404 +    }
  1.2405 +    pTab = sqlite3LocateTable(pParse, 0, pTblName->a[0].zName, 
  1.2406 +        pTblName->a[0].zDatabase);
  1.2407 +    if( !pTab ) goto exit_create_index;
  1.2408 +    assert( db->aDb[iDb].pSchema==pTab->pSchema );
  1.2409 +  }else{
  1.2410 +    assert( pName==0 );
  1.2411 +    pTab = pParse->pNewTable;
  1.2412 +    if( !pTab ) goto exit_create_index;
  1.2413 +    iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
  1.2414 +  }
  1.2415 +  pDb = &db->aDb[iDb];
  1.2416 +
  1.2417 +  if( pTab==0 || pParse->nErr ) goto exit_create_index;
  1.2418 +  if( pTab->readOnly ){
  1.2419 +    sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName);
  1.2420 +    goto exit_create_index;
  1.2421 +  }
  1.2422 +#ifndef SQLITE_OMIT_VIEW
  1.2423 +  if( pTab->pSelect ){
  1.2424 +    sqlite3ErrorMsg(pParse, "views may not be indexed");
  1.2425 +    goto exit_create_index;
  1.2426 +  }
  1.2427 +#endif
  1.2428 +#ifndef SQLITE_OMIT_VIRTUALTABLE
  1.2429 +  if( IsVirtual(pTab) ){
  1.2430 +    sqlite3ErrorMsg(pParse, "virtual tables may not be indexed");
  1.2431 +    goto exit_create_index;
  1.2432 +  }
  1.2433 +#endif
  1.2434 +
  1.2435 +  /*
  1.2436 +  ** Find the name of the index.  Make sure there is not already another
  1.2437 +  ** index or table with the same name.  
  1.2438 +  **
  1.2439 +  ** Exception:  If we are reading the names of permanent indices from the
  1.2440 +  ** sqlite_master table (because some other process changed the schema) and
  1.2441 +  ** one of the index names collides with the name of a temporary table or
  1.2442 +  ** index, then we will continue to process this index.
  1.2443 +  **
  1.2444 +  ** If pName==0 it means that we are
  1.2445 +  ** dealing with a primary key or UNIQUE constraint.  We have to invent our
  1.2446 +  ** own name.
  1.2447 +  */
  1.2448 +  if( pName ){
  1.2449 +    zName = sqlite3NameFromToken(db, pName);
  1.2450 +    if( SQLITE_OK!=sqlite3ReadSchema(pParse) ) goto exit_create_index;
  1.2451 +    if( zName==0 ) goto exit_create_index;
  1.2452 +    if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){
  1.2453 +      goto exit_create_index;
  1.2454 +    }
  1.2455 +    if( !db->init.busy ){
  1.2456 +      if( SQLITE_OK!=sqlite3ReadSchema(pParse) ) goto exit_create_index;
  1.2457 +      if( sqlite3FindTable(db, zName, 0)!=0 ){
  1.2458 +        sqlite3ErrorMsg(pParse, "there is already a table named %s", zName);
  1.2459 +        goto exit_create_index;
  1.2460 +      }
  1.2461 +    }
  1.2462 +    if( sqlite3FindIndex(db, zName, pDb->zName)!=0 ){
  1.2463 +      if( !ifNotExist ){
  1.2464 +        sqlite3ErrorMsg(pParse, "index %s already exists", zName);
  1.2465 +      }
  1.2466 +      goto exit_create_index;
  1.2467 +    }
  1.2468 +  }else{
  1.2469 +    int n;
  1.2470 +    Index *pLoop;
  1.2471 +    for(pLoop=pTab->pIndex, n=1; pLoop; pLoop=pLoop->pNext, n++){}
  1.2472 +    zName = sqlite3MPrintf(db, "sqlite_autoindex_%s_%d", pTab->zName, n);
  1.2473 +    if( zName==0 ){
  1.2474 +      goto exit_create_index;
  1.2475 +    }
  1.2476 +  }
  1.2477 +
  1.2478 +  /* Check for authorization to create an index.
  1.2479 +  */
  1.2480 +#ifndef SQLITE_OMIT_AUTHORIZATION
  1.2481 +  {
  1.2482 +    const char *zDb = pDb->zName;
  1.2483 +    if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iDb), 0, zDb) ){
  1.2484 +      goto exit_create_index;
  1.2485 +    }
  1.2486 +    i = SQLITE_CREATE_INDEX;
  1.2487 +    if( !OMIT_TEMPDB && iDb==1 ) i = SQLITE_CREATE_TEMP_INDEX;
  1.2488 +    if( sqlite3AuthCheck(pParse, i, zName, pTab->zName, zDb) ){
  1.2489 +      goto exit_create_index;
  1.2490 +    }
  1.2491 +  }
  1.2492 +#endif
  1.2493 +
  1.2494 +  /* If pList==0, it means this routine was called to make a primary
  1.2495 +  ** key out of the last column added to the table under construction.
  1.2496 +  ** So create a fake list to simulate this.
  1.2497 +  */
  1.2498 +  if( pList==0 ){
  1.2499 +    nullId.z = (u8*)pTab->aCol[pTab->nCol-1].zName;
  1.2500 +    nullId.n = strlen((char*)nullId.z);
  1.2501 +    pList = sqlite3ExprListAppend(pParse, 0, 0, &nullId);
  1.2502 +    if( pList==0 ) goto exit_create_index;
  1.2503 +    pList->a[0].sortOrder = sortOrder;
  1.2504 +  }
  1.2505 +
  1.2506 +  /* Figure out how many bytes of space are required to store explicitly
  1.2507 +  ** specified collation sequence names.
  1.2508 +  */
  1.2509 +  for(i=0; i<pList->nExpr; i++){
  1.2510 +    Expr *pExpr = pList->a[i].pExpr;
  1.2511 +    if( pExpr ){
  1.2512 +      nExtra += (1 + strlen(pExpr->pColl->zName));
  1.2513 +    }
  1.2514 +  }
  1.2515 +
  1.2516 +  /* 
  1.2517 +  ** Allocate the index structure. 
  1.2518 +  */
  1.2519 +  nName = strlen(zName);
  1.2520 +  nCol = pList->nExpr;
  1.2521 +  pIndex = sqlite3DbMallocZero(db, 
  1.2522 +      sizeof(Index) +              /* Index structure  */
  1.2523 +      sizeof(int)*nCol +           /* Index.aiColumn   */
  1.2524 +      sizeof(int)*(nCol+1) +       /* Index.aiRowEst   */
  1.2525 +      sizeof(char *)*nCol +        /* Index.azColl     */
  1.2526 +      sizeof(u8)*nCol +            /* Index.aSortOrder */
  1.2527 +      nName + 1 +                  /* Index.zName      */
  1.2528 +      nExtra                       /* Collation sequence names */
  1.2529 +  );
  1.2530 +  if( db->mallocFailed ){
  1.2531 +    goto exit_create_index;
  1.2532 +  }
  1.2533 +  pIndex->azColl = (char**)(&pIndex[1]);
  1.2534 +  pIndex->aiColumn = (int *)(&pIndex->azColl[nCol]);
  1.2535 +  pIndex->aiRowEst = (unsigned *)(&pIndex->aiColumn[nCol]);
  1.2536 +  pIndex->aSortOrder = (u8 *)(&pIndex->aiRowEst[nCol+1]);
  1.2537 +  pIndex->zName = (char *)(&pIndex->aSortOrder[nCol]);
  1.2538 +  zExtra = (char *)(&pIndex->zName[nName+1]);
  1.2539 +  memcpy(pIndex->zName, zName, nName+1);
  1.2540 +  pIndex->pTable = pTab;
  1.2541 +  pIndex->nColumn = pList->nExpr;
  1.2542 +  pIndex->onError = onError;
  1.2543 +  pIndex->autoIndex = pName==0;
  1.2544 +  pIndex->pSchema = db->aDb[iDb].pSchema;
  1.2545 +
  1.2546 +  /* Check to see if we should honor DESC requests on index columns
  1.2547 +  */
  1.2548 +  if( pDb->pSchema->file_format>=4 ){
  1.2549 +    sortOrderMask = -1;   /* Honor DESC */
  1.2550 +  }else{
  1.2551 +    sortOrderMask = 0;    /* Ignore DESC */
  1.2552 +  }
  1.2553 +
  1.2554 +  /* Scan the names of the columns of the table to be indexed and
  1.2555 +  ** load the column indices into the Index structure.  Report an error
  1.2556 +  ** if any column is not found.
  1.2557 +  */
  1.2558 +  for(i=0, pListItem=pList->a; i<pList->nExpr; i++, pListItem++){
  1.2559 +    const char *zColName = pListItem->zName;
  1.2560 +    Column *pTabCol;
  1.2561 +    int requestedSortOrder;
  1.2562 +    char *zColl;                   /* Collation sequence name */
  1.2563 +
  1.2564 +    for(j=0, pTabCol=pTab->aCol; j<pTab->nCol; j++, pTabCol++){
  1.2565 +      if( sqlite3StrICmp(zColName, pTabCol->zName)==0 ) break;
  1.2566 +    }
  1.2567 +    if( j>=pTab->nCol ){
  1.2568 +      sqlite3ErrorMsg(pParse, "table %s has no column named %s",
  1.2569 +        pTab->zName, zColName);
  1.2570 +      goto exit_create_index;
  1.2571 +    }
  1.2572 +    /* TODO:  Add a test to make sure that the same column is not named
  1.2573 +    ** more than once within the same index.  Only the first instance of
  1.2574 +    ** the column will ever be used by the optimizer.  Note that using the
  1.2575 +    ** same column more than once cannot be an error because that would 
  1.2576 +    ** break backwards compatibility - it needs to be a warning.
  1.2577 +    */
  1.2578 +    pIndex->aiColumn[i] = j;
  1.2579 +    if( pListItem->pExpr ){
  1.2580 +      assert( pListItem->pExpr->pColl );
  1.2581 +      zColl = zExtra;
  1.2582 +      sqlite3_snprintf(nExtra, zExtra, "%s", pListItem->pExpr->pColl->zName);
  1.2583 +      zExtra += (strlen(zColl) + 1);
  1.2584 +    }else{
  1.2585 +      zColl = pTab->aCol[j].zColl;
  1.2586 +      if( !zColl ){
  1.2587 +        zColl = db->pDfltColl->zName;
  1.2588 +      }
  1.2589 +    }
  1.2590 +    if( !db->init.busy && !sqlite3LocateCollSeq(pParse, zColl, -1) ){
  1.2591 +      goto exit_create_index;
  1.2592 +    }
  1.2593 +    pIndex->azColl[i] = zColl;
  1.2594 +    requestedSortOrder = pListItem->sortOrder & sortOrderMask;
  1.2595 +    pIndex->aSortOrder[i] = requestedSortOrder;
  1.2596 +  }
  1.2597 +  sqlite3DefaultRowEst(pIndex);
  1.2598 +
  1.2599 +  if( pTab==pParse->pNewTable ){
  1.2600 +    /* This routine has been called to create an automatic index as a
  1.2601 +    ** result of a PRIMARY KEY or UNIQUE clause on a column definition, or
  1.2602 +    ** a PRIMARY KEY or UNIQUE clause following the column definitions.
  1.2603 +    ** i.e. one of:
  1.2604 +    **
  1.2605 +    ** CREATE TABLE t(x PRIMARY KEY, y);
  1.2606 +    ** CREATE TABLE t(x, y, UNIQUE(x, y));
  1.2607 +    **
  1.2608 +    ** Either way, check to see if the table already has such an index. If
  1.2609 +    ** so, don't bother creating this one. This only applies to
  1.2610 +    ** automatically created indices. Users can do as they wish with
  1.2611 +    ** explicit indices.
  1.2612 +    */
  1.2613 +    Index *pIdx;
  1.2614 +    for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
  1.2615 +      int k;
  1.2616 +      assert( pIdx->onError!=OE_None );
  1.2617 +      assert( pIdx->autoIndex );
  1.2618 +      assert( pIndex->onError!=OE_None );
  1.2619 +
  1.2620 +      if( pIdx->nColumn!=pIndex->nColumn ) continue;
  1.2621 +      for(k=0; k<pIdx->nColumn; k++){
  1.2622 +        const char *z1 = pIdx->azColl[k];
  1.2623 +        const char *z2 = pIndex->azColl[k];
  1.2624 +        if( pIdx->aiColumn[k]!=pIndex->aiColumn[k] ) break;
  1.2625 +        if( pIdx->aSortOrder[k]!=pIndex->aSortOrder[k] ) break;
  1.2626 +        if( z1!=z2 && sqlite3StrICmp(z1, z2) ) break;
  1.2627 +      }
  1.2628 +      if( k==pIdx->nColumn ){
  1.2629 +        if( pIdx->onError!=pIndex->onError ){
  1.2630 +          /* This constraint creates the same index as a previous
  1.2631 +          ** constraint specified somewhere in the CREATE TABLE statement.
  1.2632 +          ** However the ON CONFLICT clauses are different. If both this 
  1.2633 +          ** constraint and the previous equivalent constraint have explicit
  1.2634 +          ** ON CONFLICT clauses this is an error. Otherwise, use the
  1.2635 +          ** explicitly specified behaviour for the index.
  1.2636 +          */
  1.2637 +          if( !(pIdx->onError==OE_Default || pIndex->onError==OE_Default) ){
  1.2638 +            sqlite3ErrorMsg(pParse, 
  1.2639 +                "conflicting ON CONFLICT clauses specified", 0);
  1.2640 +          }
  1.2641 +          if( pIdx->onError==OE_Default ){
  1.2642 +            pIdx->onError = pIndex->onError;
  1.2643 +          }
  1.2644 +        }
  1.2645 +        goto exit_create_index;
  1.2646 +      }
  1.2647 +    }
  1.2648 +  }
  1.2649 +
  1.2650 +  /* Link the new Index structure to its table and to the other
  1.2651 +  ** in-memory database structures. 
  1.2652 +  */
  1.2653 +  if( db->init.busy ){
  1.2654 +    Index *p;
  1.2655 +    p = sqlite3HashInsert(&pIndex->pSchema->idxHash, 
  1.2656 +                         pIndex->zName, strlen(pIndex->zName)+1, pIndex);
  1.2657 +    if( p ){
  1.2658 +      assert( p==pIndex );  /* Malloc must have failed */
  1.2659 +      db->mallocFailed = 1;
  1.2660 +      goto exit_create_index;
  1.2661 +    }
  1.2662 +    db->flags |= SQLITE_InternChanges;
  1.2663 +    if( pTblName!=0 ){
  1.2664 +      pIndex->tnum = db->init.newTnum;
  1.2665 +    }
  1.2666 +  }
  1.2667 +
  1.2668 +  /* If the db->init.busy is 0 then create the index on disk.  This
  1.2669 +  ** involves writing the index into the master table and filling in the
  1.2670 +  ** index with the current table contents.
  1.2671 +  **
  1.2672 +  ** The db->init.busy is 0 when the user first enters a CREATE INDEX 
  1.2673 +  ** command.  db->init.busy is 1 when a database is opened and 
  1.2674 +  ** CREATE INDEX statements are read out of the master table.  In
  1.2675 +  ** the latter case the index already exists on disk, which is why
  1.2676 +  ** we don't want to recreate it.
  1.2677 +  **
  1.2678 +  ** If pTblName==0 it means this index is generated as a primary key
  1.2679 +  ** or UNIQUE constraint of a CREATE TABLE statement.  Since the table
  1.2680 +  ** has just been created, it contains no data and the index initialization
  1.2681 +  ** step can be skipped.
  1.2682 +  */
  1.2683 +  else if( db->init.busy==0 ){
  1.2684 +    Vdbe *v;
  1.2685 +    char *zStmt;
  1.2686 +    int iMem = ++pParse->nMem;
  1.2687 +
  1.2688 +    v = sqlite3GetVdbe(pParse);
  1.2689 +    if( v==0 ) goto exit_create_index;
  1.2690 +
  1.2691 +
  1.2692 +    /* Create the rootpage for the index
  1.2693 +    */
  1.2694 +    sqlite3BeginWriteOperation(pParse, 1, iDb);
  1.2695 +    sqlite3VdbeAddOp2(v, OP_CreateIndex, iDb, iMem);
  1.2696 +
  1.2697 +    /* Gather the complete text of the CREATE INDEX statement into
  1.2698 +    ** the zStmt variable
  1.2699 +    */
  1.2700 +    if( pStart && pEnd ){
  1.2701 +      /* A named index with an explicit CREATE INDEX statement */
  1.2702 +      zStmt = sqlite3MPrintf(db, "CREATE%s INDEX %.*s",
  1.2703 +        onError==OE_None ? "" : " UNIQUE",
  1.2704 +        pEnd->z - pName->z + 1,
  1.2705 +        pName->z);
  1.2706 +    }else{
  1.2707 +      /* An automatic index created by a PRIMARY KEY or UNIQUE constraint */
  1.2708 +      /* zStmt = sqlite3MPrintf(""); */
  1.2709 +      zStmt = 0;
  1.2710 +    }
  1.2711 +
  1.2712 +    /* Add an entry in sqlite_master for this index
  1.2713 +    */
  1.2714 +    sqlite3NestedParse(pParse, 
  1.2715 +        "INSERT INTO %Q.%s VALUES('index',%Q,%Q,#%d,%Q);",
  1.2716 +        db->aDb[iDb].zName, SCHEMA_TABLE(iDb),
  1.2717 +        pIndex->zName,
  1.2718 +        pTab->zName,
  1.2719 +        iMem,
  1.2720 +        zStmt
  1.2721 +    );
  1.2722 +    sqlite3DbFree(db, zStmt);
  1.2723 +
  1.2724 +    /* Fill the index with data and reparse the schema. Code an OP_Expire
  1.2725 +    ** to invalidate all pre-compiled statements.
  1.2726 +    */
  1.2727 +    if( pTblName ){
  1.2728 +      sqlite3RefillIndex(pParse, pIndex, iMem);
  1.2729 +      sqlite3ChangeCookie(pParse, iDb);
  1.2730 +      sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 0, 0,
  1.2731 +         sqlite3MPrintf(db, "name='%q'", pIndex->zName), P4_DYNAMIC);
  1.2732 +      sqlite3VdbeAddOp1(v, OP_Expire, 0);
  1.2733 +    }
  1.2734 +  }
  1.2735 +
  1.2736 +  /* When adding an index to the list of indices for a table, make
  1.2737 +  ** sure all indices labeled OE_Replace come after all those labeled
  1.2738 +  ** OE_Ignore.  This is necessary for the correct operation of UPDATE
  1.2739 +  ** and INSERT.
  1.2740 +  */
  1.2741 +  if( db->init.busy || pTblName==0 ){
  1.2742 +    if( onError!=OE_Replace || pTab->pIndex==0
  1.2743 +         || pTab->pIndex->onError==OE_Replace){
  1.2744 +      pIndex->pNext = pTab->pIndex;
  1.2745 +      pTab->pIndex = pIndex;
  1.2746 +    }else{
  1.2747 +      Index *pOther = pTab->pIndex;
  1.2748 +      while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
  1.2749 +        pOther = pOther->pNext;
  1.2750 +      }
  1.2751 +      pIndex->pNext = pOther->pNext;
  1.2752 +      pOther->pNext = pIndex;
  1.2753 +    }
  1.2754 +    pIndex = 0;
  1.2755 +  }
  1.2756 +
  1.2757 +  /* Clean up before exiting */
  1.2758 +exit_create_index:
  1.2759 +  if( pIndex ){
  1.2760 +    sqlite3_free(pIndex->zColAff);
  1.2761 +    sqlite3DbFree(db, pIndex);  
  1.2762 +  }
  1.2763 +  sqlite3ExprListDelete(db, pList);
  1.2764 +  sqlite3SrcListDelete(db, pTblName);
  1.2765 +  sqlite3DbFree(db, zName);
  1.2766 +  return;
  1.2767 +}
  1.2768 +
  1.2769 +/*
  1.2770 +** Generate code to make sure the file format number is at least minFormat.
  1.2771 +** The generated code will increase the file format number if necessary.
  1.2772 +*/
  1.2773 +void sqlite3MinimumFileFormat(Parse *pParse, int iDb, int minFormat){
  1.2774 +  Vdbe *v;
  1.2775 +  v = sqlite3GetVdbe(pParse);
  1.2776 +  if( v ){
  1.2777 +    int r1 = sqlite3GetTempReg(pParse);
  1.2778 +    int r2 = sqlite3GetTempReg(pParse);
  1.2779 +    int j1;
  1.2780 +    sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, r1, 1);
  1.2781 +    sqlite3VdbeUsesBtree(v, iDb);
  1.2782 +    sqlite3VdbeAddOp2(v, OP_Integer, minFormat, r2);
  1.2783 +    j1 = sqlite3VdbeAddOp3(v, OP_Ge, r2, 0, r1);
  1.2784 +    sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, 1, r2);
  1.2785 +    sqlite3VdbeJumpHere(v, j1);
  1.2786 +    sqlite3ReleaseTempReg(pParse, r1);
  1.2787 +    sqlite3ReleaseTempReg(pParse, r2);
  1.2788 +  }
  1.2789 +}
  1.2790 +
  1.2791 +/*
  1.2792 +** Fill the Index.aiRowEst[] array with default information - information
  1.2793 +** to be used when we have not run the ANALYZE command.
  1.2794 +**
  1.2795 +** aiRowEst[0] is suppose to contain the number of elements in the index.
  1.2796 +** Since we do not know, guess 1 million.  aiRowEst[1] is an estimate of the
  1.2797 +** number of rows in the table that match any particular value of the
  1.2798 +** first column of the index.  aiRowEst[2] is an estimate of the number
  1.2799 +** of rows that match any particular combiniation of the first 2 columns
  1.2800 +** of the index.  And so forth.  It must always be the case that
  1.2801 +*
  1.2802 +**           aiRowEst[N]<=aiRowEst[N-1]
  1.2803 +**           aiRowEst[N]>=1
  1.2804 +**
  1.2805 +** Apart from that, we have little to go on besides intuition as to
  1.2806 +** how aiRowEst[] should be initialized.  The numbers generated here
  1.2807 +** are based on typical values found in actual indices.
  1.2808 +*/
  1.2809 +void sqlite3DefaultRowEst(Index *pIdx){
  1.2810 +  unsigned *a = pIdx->aiRowEst;
  1.2811 +  int i;
  1.2812 +  assert( a!=0 );
  1.2813 +  a[0] = 1000000;
  1.2814 +  for(i=pIdx->nColumn; i>=5; i--){
  1.2815 +    a[i] = 5;
  1.2816 +  }
  1.2817 +  while( i>=1 ){
  1.2818 +    a[i] = 11 - i;
  1.2819 +    i--;
  1.2820 +  }
  1.2821 +  if( pIdx->onError!=OE_None ){
  1.2822 +    a[pIdx->nColumn] = 1;
  1.2823 +  }
  1.2824 +}
  1.2825 +
  1.2826 +/*
  1.2827 +** This routine will drop an existing named index.  This routine
  1.2828 +** implements the DROP INDEX statement.
  1.2829 +*/
  1.2830 +void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){
  1.2831 +  Index *pIndex;
  1.2832 +  Vdbe *v;
  1.2833 +  sqlite3 *db = pParse->db;
  1.2834 +  int iDb;
  1.2835 +
  1.2836 +  if( pParse->nErr || db->mallocFailed ){
  1.2837 +    goto exit_drop_index;
  1.2838 +  }
  1.2839 +  assert( pName->nSrc==1 );
  1.2840 +  if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){
  1.2841 +    goto exit_drop_index;
  1.2842 +  }
  1.2843 +  pIndex = sqlite3FindIndex(db, pName->a[0].zName, pName->a[0].zDatabase);
  1.2844 +  if( pIndex==0 ){
  1.2845 +    if( !ifExists ){
  1.2846 +      sqlite3ErrorMsg(pParse, "no such index: %S", pName, 0);
  1.2847 +    }
  1.2848 +    pParse->checkSchema = 1;
  1.2849 +    goto exit_drop_index;
  1.2850 +  }
  1.2851 +  if( pIndex->autoIndex ){
  1.2852 +    sqlite3ErrorMsg(pParse, "index associated with UNIQUE "
  1.2853 +      "or PRIMARY KEY constraint cannot be dropped", 0);
  1.2854 +    goto exit_drop_index;
  1.2855 +  }
  1.2856 +  iDb = sqlite3SchemaToIndex(db, pIndex->pSchema);
  1.2857 +#ifndef SQLITE_OMIT_AUTHORIZATION
  1.2858 +  {
  1.2859 +    int code = SQLITE_DROP_INDEX;
  1.2860 +    Table *pTab = pIndex->pTable;
  1.2861 +    const char *zDb = db->aDb[iDb].zName;
  1.2862 +    const char *zTab = SCHEMA_TABLE(iDb);
  1.2863 +    if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){
  1.2864 +      goto exit_drop_index;
  1.2865 +    }
  1.2866 +    if( !OMIT_TEMPDB && iDb ) code = SQLITE_DROP_TEMP_INDEX;
  1.2867 +    if( sqlite3AuthCheck(pParse, code, pIndex->zName, pTab->zName, zDb) ){
  1.2868 +      goto exit_drop_index;
  1.2869 +    }
  1.2870 +  }
  1.2871 +#endif
  1.2872 +
  1.2873 +  /* Generate code to remove the index and from the master table */
  1.2874 +  v = sqlite3GetVdbe(pParse);
  1.2875 +  if( v ){
  1.2876 +    sqlite3BeginWriteOperation(pParse, 1, iDb);
  1.2877 +    sqlite3NestedParse(pParse,
  1.2878 +       "DELETE FROM %Q.%s WHERE name=%Q",
  1.2879 +       db->aDb[iDb].zName, SCHEMA_TABLE(iDb),
  1.2880 +       pIndex->zName
  1.2881 +    );
  1.2882 +    if( sqlite3FindTable(db, "sqlite_stat1", db->aDb[iDb].zName) ){
  1.2883 +      sqlite3NestedParse(pParse,
  1.2884 +        "DELETE FROM %Q.sqlite_stat1 WHERE idx=%Q",
  1.2885 +        db->aDb[iDb].zName, pIndex->zName
  1.2886 +      );
  1.2887 +    }
  1.2888 +    sqlite3ChangeCookie(pParse, iDb);
  1.2889 +    destroyRootPage(pParse, pIndex->tnum, iDb);
  1.2890 +    sqlite3VdbeAddOp4(v, OP_DropIndex, iDb, 0, 0, pIndex->zName, 0);
  1.2891 +  }
  1.2892 +
  1.2893 +exit_drop_index:
  1.2894 +  sqlite3SrcListDelete(db, pName);
  1.2895 +}
  1.2896 +
  1.2897 +/*
  1.2898 +** pArray is a pointer to an array of objects.  Each object in the
  1.2899 +** array is szEntry bytes in size.  This routine allocates a new
  1.2900 +** object on the end of the array.
  1.2901 +**
  1.2902 +** *pnEntry is the number of entries already in use.  *pnAlloc is
  1.2903 +** the previously allocated size of the array.  initSize is the
  1.2904 +** suggested initial array size allocation.
  1.2905 +**
  1.2906 +** The index of the new entry is returned in *pIdx.
  1.2907 +**
  1.2908 +** This routine returns a pointer to the array of objects.  This
  1.2909 +** might be the same as the pArray parameter or it might be a different
  1.2910 +** pointer if the array was resized.
  1.2911 +*/
  1.2912 +void *sqlite3ArrayAllocate(
  1.2913 +  sqlite3 *db,      /* Connection to notify of malloc failures */
  1.2914 +  void *pArray,     /* Array of objects.  Might be reallocated */
  1.2915 +  int szEntry,      /* Size of each object in the array */
  1.2916 +  int initSize,     /* Suggested initial allocation, in elements */
  1.2917 +  int *pnEntry,     /* Number of objects currently in use */
  1.2918 +  int *pnAlloc,     /* Current size of the allocation, in elements */
  1.2919 +  int *pIdx         /* Write the index of a new slot here */
  1.2920 +){
  1.2921 +  char *z;
  1.2922 +  if( *pnEntry >= *pnAlloc ){
  1.2923 +    void *pNew;
  1.2924 +    int newSize;
  1.2925 +    newSize = (*pnAlloc)*2 + initSize;
  1.2926 +    pNew = sqlite3DbRealloc(db, pArray, newSize*szEntry);
  1.2927 +    if( pNew==0 ){
  1.2928 +      *pIdx = -1;
  1.2929 +      return pArray;
  1.2930 +    }
  1.2931 +    *pnAlloc = newSize;
  1.2932 +    pArray = pNew;
  1.2933 +  }
  1.2934 +  z = (char*)pArray;
  1.2935 +  memset(&z[*pnEntry * szEntry], 0, szEntry);
  1.2936 +  *pIdx = *pnEntry;
  1.2937 +  ++*pnEntry;
  1.2938 +  return pArray;
  1.2939 +}
  1.2940 +
  1.2941 +/*
  1.2942 +** Append a new element to the given IdList.  Create a new IdList if
  1.2943 +** need be.
  1.2944 +**
  1.2945 +** A new IdList is returned, or NULL if malloc() fails.
  1.2946 +*/
  1.2947 +IdList *sqlite3IdListAppend(sqlite3 *db, IdList *pList, Token *pToken){
  1.2948 +  int i;
  1.2949 +  if( pList==0 ){
  1.2950 +    pList = sqlite3DbMallocZero(db, sizeof(IdList) );
  1.2951 +    if( pList==0 ) return 0;
  1.2952 +    pList->nAlloc = 0;
  1.2953 +  }
  1.2954 +  pList->a = sqlite3ArrayAllocate(
  1.2955 +      db,
  1.2956 +      pList->a,
  1.2957 +      sizeof(pList->a[0]),
  1.2958 +      5,
  1.2959 +      &pList->nId,
  1.2960 +      &pList->nAlloc,
  1.2961 +      &i
  1.2962 +  );
  1.2963 +  if( i<0 ){
  1.2964 +    sqlite3IdListDelete(db, pList);
  1.2965 +    return 0;
  1.2966 +  }
  1.2967 +  pList->a[i].zName = sqlite3NameFromToken(db, pToken);
  1.2968 +  return pList;
  1.2969 +}
  1.2970 +
  1.2971 +/*
  1.2972 +** Delete an IdList.
  1.2973 +*/
  1.2974 +void sqlite3IdListDelete(sqlite3 *db, IdList *pList){
  1.2975 +  int i;
  1.2976 +  if( pList==0 ) return;
  1.2977 +  for(i=0; i<pList->nId; i++){
  1.2978 +    sqlite3DbFree(db, pList->a[i].zName);
  1.2979 +  }
  1.2980 +  sqlite3DbFree(db, pList->a);
  1.2981 +  sqlite3DbFree(db, pList);
  1.2982 +}
  1.2983 +
  1.2984 +/*
  1.2985 +** Return the index in pList of the identifier named zId.  Return -1
  1.2986 +** if not found.
  1.2987 +*/
  1.2988 +int sqlite3IdListIndex(IdList *pList, const char *zName){
  1.2989 +  int i;
  1.2990 +  if( pList==0 ) return -1;
  1.2991 +  for(i=0; i<pList->nId; i++){
  1.2992 +    if( sqlite3StrICmp(pList->a[i].zName, zName)==0 ) return i;
  1.2993 +  }
  1.2994 +  return -1;
  1.2995 +}
  1.2996 +
  1.2997 +/*
  1.2998 +** Append a new table name to the given SrcList.  Create a new SrcList if
  1.2999 +** need be.  A new entry is created in the SrcList even if pToken is NULL.
  1.3000 +**
  1.3001 +** A new SrcList is returned, or NULL if malloc() fails.
  1.3002 +**
  1.3003 +** If pDatabase is not null, it means that the table has an optional
  1.3004 +** database name prefix.  Like this:  "database.table".  The pDatabase
  1.3005 +** points to the table name and the pTable points to the database name.
  1.3006 +** The SrcList.a[].zName field is filled with the table name which might
  1.3007 +** come from pTable (if pDatabase is NULL) or from pDatabase.  
  1.3008 +** SrcList.a[].zDatabase is filled with the database name from pTable,
  1.3009 +** or with NULL if no database is specified.
  1.3010 +**
  1.3011 +** In other words, if call like this:
  1.3012 +**
  1.3013 +**         sqlite3SrcListAppend(D,A,B,0);
  1.3014 +**
  1.3015 +** Then B is a table name and the database name is unspecified.  If called
  1.3016 +** like this:
  1.3017 +**
  1.3018 +**         sqlite3SrcListAppend(D,A,B,C);
  1.3019 +**
  1.3020 +** Then C is the table name and B is the database name.
  1.3021 +*/
  1.3022 +SrcList *sqlite3SrcListAppend(
  1.3023 +  sqlite3 *db,        /* Connection to notify of malloc failures */
  1.3024 +  SrcList *pList,     /* Append to this SrcList. NULL creates a new SrcList */
  1.3025 +  Token *pTable,      /* Table to append */
  1.3026 +  Token *pDatabase    /* Database of the table */
  1.3027 +){
  1.3028 +  struct SrcList_item *pItem;
  1.3029 +  if( pList==0 ){
  1.3030 +    pList = sqlite3DbMallocZero(db, sizeof(SrcList) );
  1.3031 +    if( pList==0 ) return 0;
  1.3032 +    pList->nAlloc = 1;
  1.3033 +  }
  1.3034 +  if( pList->nSrc>=pList->nAlloc ){
  1.3035 +    SrcList *pNew;
  1.3036 +    pList->nAlloc *= 2;
  1.3037 +    pNew = sqlite3DbRealloc(db, pList,
  1.3038 +               sizeof(*pList) + (pList->nAlloc-1)*sizeof(pList->a[0]) );
  1.3039 +    if( pNew==0 ){
  1.3040 +      sqlite3SrcListDelete(db, pList);
  1.3041 +      return 0;
  1.3042 +    }
  1.3043 +    pList = pNew;
  1.3044 +  }
  1.3045 +  pItem = &pList->a[pList->nSrc];
  1.3046 +  memset(pItem, 0, sizeof(pList->a[0]));
  1.3047 +  if( pDatabase && pDatabase->z==0 ){
  1.3048 +    pDatabase = 0;
  1.3049 +  }
  1.3050 +  if( pDatabase && pTable ){
  1.3051 +    Token *pTemp = pDatabase;
  1.3052 +    pDatabase = pTable;
  1.3053 +    pTable = pTemp;
  1.3054 +  }
  1.3055 +  pItem->zName = sqlite3NameFromToken(db, pTable);
  1.3056 +  pItem->zDatabase = sqlite3NameFromToken(db, pDatabase);
  1.3057 +  pItem->iCursor = -1;
  1.3058 +  pItem->isPopulated = 0;
  1.3059 +  pList->nSrc++;
  1.3060 +  return pList;
  1.3061 +}
  1.3062 +
  1.3063 +/*
  1.3064 +** Assign cursors to all tables in a SrcList
  1.3065 +*/
  1.3066 +void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){
  1.3067 +  int i;
  1.3068 +  struct SrcList_item *pItem;
  1.3069 +  assert(pList || pParse->db->mallocFailed );
  1.3070 +  if( pList ){
  1.3071 +    for(i=0, pItem=pList->a; i<pList->nSrc; i++, pItem++){
  1.3072 +      if( pItem->iCursor>=0 ) break;
  1.3073 +      pItem->iCursor = pParse->nTab++;
  1.3074 +      if( pItem->pSelect ){
  1.3075 +        sqlite3SrcListAssignCursors(pParse, pItem->pSelect->pSrc);
  1.3076 +      }
  1.3077 +    }
  1.3078 +  }
  1.3079 +}
  1.3080 +
  1.3081 +/*
  1.3082 +** Delete an entire SrcList including all its substructure.
  1.3083 +*/
  1.3084 +void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){
  1.3085 +  int i;
  1.3086 +  struct SrcList_item *pItem;
  1.3087 +  if( pList==0 ) return;
  1.3088 +  for(pItem=pList->a, i=0; i<pList->nSrc; i++, pItem++){
  1.3089 +    sqlite3DbFree(db, pItem->zDatabase);
  1.3090 +    sqlite3DbFree(db, pItem->zName);
  1.3091 +    sqlite3DbFree(db, pItem->zAlias);
  1.3092 +    sqlite3DeleteTable(pItem->pTab);
  1.3093 +    sqlite3SelectDelete(db, pItem->pSelect);
  1.3094 +    sqlite3ExprDelete(db, pItem->pOn);
  1.3095 +    sqlite3IdListDelete(db, pItem->pUsing);
  1.3096 +  }
  1.3097 +  sqlite3DbFree(db, pList);
  1.3098 +}
  1.3099 +
  1.3100 +/*
  1.3101 +** This routine is called by the parser to add a new term to the
  1.3102 +** end of a growing FROM clause.  The "p" parameter is the part of
  1.3103 +** the FROM clause that has already been constructed.  "p" is NULL
  1.3104 +** if this is the first term of the FROM clause.  pTable and pDatabase
  1.3105 +** are the name of the table and database named in the FROM clause term.
  1.3106 +** pDatabase is NULL if the database name qualifier is missing - the
  1.3107 +** usual case.  If the term has a alias, then pAlias points to the
  1.3108 +** alias token.  If the term is a subquery, then pSubquery is the
  1.3109 +** SELECT statement that the subquery encodes.  The pTable and
  1.3110 +** pDatabase parameters are NULL for subqueries.  The pOn and pUsing
  1.3111 +** parameters are the content of the ON and USING clauses.
  1.3112 +**
  1.3113 +** Return a new SrcList which encodes is the FROM with the new
  1.3114 +** term added.
  1.3115 +*/
  1.3116 +SrcList *sqlite3SrcListAppendFromTerm(
  1.3117 +  Parse *pParse,          /* Parsing context */
  1.3118 +  SrcList *p,             /* The left part of the FROM clause already seen */
  1.3119 +  Token *pTable,          /* Name of the table to add to the FROM clause */
  1.3120 +  Token *pDatabase,       /* Name of the database containing pTable */
  1.3121 +  Token *pAlias,          /* The right-hand side of the AS subexpression */
  1.3122 +  Select *pSubquery,      /* A subquery used in place of a table name */
  1.3123 +  Expr *pOn,              /* The ON clause of a join */
  1.3124 +  IdList *pUsing          /* The USING clause of a join */
  1.3125 +){
  1.3126 +  struct SrcList_item *pItem;
  1.3127 +  sqlite3 *db = pParse->db;
  1.3128 +  p = sqlite3SrcListAppend(db, p, pTable, pDatabase);
  1.3129 +  if( p==0 || p->nSrc==0 ){
  1.3130 +    sqlite3ExprDelete(db, pOn);
  1.3131 +    sqlite3IdListDelete(db, pUsing);
  1.3132 +    sqlite3SelectDelete(db, pSubquery);
  1.3133 +    return p;
  1.3134 +  }
  1.3135 +  pItem = &p->a[p->nSrc-1];
  1.3136 +  if( pAlias && pAlias->n ){
  1.3137 +    pItem->zAlias = sqlite3NameFromToken(db, pAlias);
  1.3138 +  }
  1.3139 +  pItem->pSelect = pSubquery;
  1.3140 +  pItem->pOn = pOn;
  1.3141 +  pItem->pUsing = pUsing;
  1.3142 +  return p;
  1.3143 +}
  1.3144 +
  1.3145 +/*
  1.3146 +** When building up a FROM clause in the parser, the join operator
  1.3147 +** is initially attached to the left operand.  But the code generator
  1.3148 +** expects the join operator to be on the right operand.  This routine
  1.3149 +** Shifts all join operators from left to right for an entire FROM
  1.3150 +** clause.
  1.3151 +**
  1.3152 +** Example: Suppose the join is like this:
  1.3153 +**
  1.3154 +**           A natural cross join B
  1.3155 +**
  1.3156 +** The operator is "natural cross join".  The A and B operands are stored
  1.3157 +** in p->a[0] and p->a[1], respectively.  The parser initially stores the
  1.3158 +** operator with A.  This routine shifts that operator over to B.
  1.3159 +*/
  1.3160 +void sqlite3SrcListShiftJoinType(SrcList *p){
  1.3161 +  if( p && p->a ){
  1.3162 +    int i;
  1.3163 +    for(i=p->nSrc-1; i>0; i--){
  1.3164 +      p->a[i].jointype = p->a[i-1].jointype;
  1.3165 +    }
  1.3166 +    p->a[0].jointype = 0;
  1.3167 +  }
  1.3168 +}
  1.3169 +
  1.3170 +/*
  1.3171 +** Begin a transaction
  1.3172 +*/
  1.3173 +void sqlite3BeginTransaction(Parse *pParse, int type){
  1.3174 +  sqlite3 *db;
  1.3175 +  Vdbe *v;
  1.3176 +  int i;
  1.3177 +
  1.3178 +  if( pParse==0 || (db=pParse->db)==0 || db->aDb[0].pBt==0 ) return;
  1.3179 +  if( pParse->nErr || db->mallocFailed ) return;
  1.3180 +  if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "BEGIN", 0, 0) ) return;
  1.3181 +
  1.3182 +  v = sqlite3GetVdbe(pParse);
  1.3183 +  if( !v ) return;
  1.3184 +  if( type!=TK_DEFERRED ){
  1.3185 +    for(i=0; i<db->nDb; i++){
  1.3186 +      sqlite3VdbeAddOp2(v, OP_Transaction, i, (type==TK_EXCLUSIVE)+1);
  1.3187 +      sqlite3VdbeUsesBtree(v, i);
  1.3188 +    }
  1.3189 +  }
  1.3190 +  sqlite3VdbeAddOp2(v, OP_AutoCommit, 0, 0);
  1.3191 +}
  1.3192 +
  1.3193 +/*
  1.3194 +** Commit a transaction
  1.3195 +*/
  1.3196 +void sqlite3CommitTransaction(Parse *pParse){
  1.3197 +  sqlite3 *db;
  1.3198 +  Vdbe *v;
  1.3199 +
  1.3200 +  if( pParse==0 || (db=pParse->db)==0 || db->aDb[0].pBt==0 ) return;
  1.3201 +  if( pParse->nErr || db->mallocFailed ) return;
  1.3202 +  if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "COMMIT", 0, 0) ) return;
  1.3203 +
  1.3204 +  v = sqlite3GetVdbe(pParse);
  1.3205 +  if( v ){
  1.3206 +    sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, 0);
  1.3207 +  }
  1.3208 +}
  1.3209 +
  1.3210 +/*
  1.3211 +** Rollback a transaction
  1.3212 +*/
  1.3213 +void sqlite3RollbackTransaction(Parse *pParse){
  1.3214 +  sqlite3 *db;
  1.3215 +  Vdbe *v;
  1.3216 +
  1.3217 +  if( pParse==0 || (db=pParse->db)==0 || db->aDb[0].pBt==0 ) return;
  1.3218 +  if( pParse->nErr || db->mallocFailed ) return;
  1.3219 +  if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "ROLLBACK", 0, 0) ) return;
  1.3220 +
  1.3221 +  v = sqlite3GetVdbe(pParse);
  1.3222 +  if( v ){
  1.3223 +    sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, 1);
  1.3224 +  }
  1.3225 +}
  1.3226 +
  1.3227 +/*
  1.3228 +** Make sure the TEMP database is open and available for use.  Return
  1.3229 +** the number of errors.  Leave any error messages in the pParse structure.
  1.3230 +*/
  1.3231 +int sqlite3OpenTempDatabase(Parse *pParse){
  1.3232 +  sqlite3 *db = pParse->db;
  1.3233 +  if( db->aDb[1].pBt==0 && !pParse->explain ){
  1.3234 +    int rc;
  1.3235 +    static const int flags = 
  1.3236 +          SQLITE_OPEN_READWRITE |
  1.3237 +          SQLITE_OPEN_CREATE |
  1.3238 +          SQLITE_OPEN_EXCLUSIVE |
  1.3239 +          SQLITE_OPEN_DELETEONCLOSE |
  1.3240 +          SQLITE_OPEN_TEMP_DB;
  1.3241 +
  1.3242 +    rc = sqlite3BtreeFactory(db, 0, 0, SQLITE_DEFAULT_CACHE_SIZE, flags,
  1.3243 +                                 &db->aDb[1].pBt);
  1.3244 +    if( rc!=SQLITE_OK ){
  1.3245 +      sqlite3ErrorMsg(pParse, "unable to open a temporary database "
  1.3246 +        "file for storing temporary tables");
  1.3247 +      pParse->rc = rc;
  1.3248 +      return 1;
  1.3249 +    }
  1.3250 +    assert( (db->flags & SQLITE_InTrans)==0 || db->autoCommit );
  1.3251 +    assert( db->aDb[1].pSchema );
  1.3252 +    sqlite3PagerJournalMode(sqlite3BtreePager(db->aDb[1].pBt),
  1.3253 +                            db->dfltJournalMode);
  1.3254 +  }
  1.3255 +  return 0;
  1.3256 +}
  1.3257 +
  1.3258 +/*
  1.3259 +** Generate VDBE code that will verify the schema cookie and start
  1.3260 +** a read-transaction for all named database files.
  1.3261 +**
  1.3262 +** It is important that all schema cookies be verified and all
  1.3263 +** read transactions be started before anything else happens in
  1.3264 +** the VDBE program.  But this routine can be called after much other
  1.3265 +** code has been generated.  So here is what we do:
  1.3266 +**
  1.3267 +** The first time this routine is called, we code an OP_Goto that
  1.3268 +** will jump to a subroutine at the end of the program.  Then we
  1.3269 +** record every database that needs its schema verified in the
  1.3270 +** pParse->cookieMask field.  Later, after all other code has been
  1.3271 +** generated, the subroutine that does the cookie verifications and
  1.3272 +** starts the transactions will be coded and the OP_Goto P2 value
  1.3273 +** will be made to point to that subroutine.  The generation of the
  1.3274 +** cookie verification subroutine code happens in sqlite3FinishCoding().
  1.3275 +**
  1.3276 +** If iDb<0 then code the OP_Goto only - don't set flag to verify the
  1.3277 +** schema on any databases.  This can be used to position the OP_Goto
  1.3278 +** early in the code, before we know if any database tables will be used.
  1.3279 +*/
  1.3280 +void sqlite3CodeVerifySchema(Parse *pParse, int iDb){
  1.3281 +  sqlite3 *db;
  1.3282 +  Vdbe *v;
  1.3283 +  int mask;
  1.3284 +
  1.3285 +  v = sqlite3GetVdbe(pParse);
  1.3286 +  if( v==0 ) return;  /* This only happens if there was a prior error */
  1.3287 +  db = pParse->db;
  1.3288 +  if( pParse->cookieGoto==0 ){
  1.3289 +    pParse->cookieGoto = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0)+1;
  1.3290 +  }
  1.3291 +  if( iDb>=0 ){
  1.3292 +    assert( iDb<db->nDb );
  1.3293 +    assert( db->aDb[iDb].pBt!=0 || iDb==1 );
  1.3294 +    assert( iDb<SQLITE_MAX_ATTACHED+2 );
  1.3295 +    mask = 1<<iDb;
  1.3296 +    if( (pParse->cookieMask & mask)==0 ){
  1.3297 +      pParse->cookieMask |= mask;
  1.3298 +      pParse->cookieValue[iDb] = db->aDb[iDb].pSchema->schema_cookie;
  1.3299 +      if( !OMIT_TEMPDB && iDb==1 ){
  1.3300 +        sqlite3OpenTempDatabase(pParse);
  1.3301 +      }
  1.3302 +    }
  1.3303 +  }
  1.3304 +}
  1.3305 +
  1.3306 +/*
  1.3307 +** Generate VDBE code that prepares for doing an operation that
  1.3308 +** might change the database.
  1.3309 +**
  1.3310 +** This routine starts a new transaction if we are not already within
  1.3311 +** a transaction.  If we are already within a transaction, then a checkpoint
  1.3312 +** is set if the setStatement parameter is true.  A checkpoint should
  1.3313 +** be set for operations that might fail (due to a constraint) part of
  1.3314 +** the way through and which will need to undo some writes without having to
  1.3315 +** rollback the whole transaction.  For operations where all constraints
  1.3316 +** can be checked before any changes are made to the database, it is never
  1.3317 +** necessary to undo a write and the checkpoint should not be set.
  1.3318 +**
  1.3319 +** Only database iDb and the temp database are made writable by this call.
  1.3320 +** If iDb==0, then the main and temp databases are made writable.   If
  1.3321 +** iDb==1 then only the temp database is made writable.  If iDb>1 then the
  1.3322 +** specified auxiliary database and the temp database are made writable.
  1.3323 +*/
  1.3324 +void sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb){
  1.3325 +  Vdbe *v = sqlite3GetVdbe(pParse);
  1.3326 +  if( v==0 ) return;
  1.3327 +  sqlite3CodeVerifySchema(pParse, iDb);
  1.3328 +  pParse->writeMask |= 1<<iDb;
  1.3329 +  if( setStatement && pParse->nested==0 ){
  1.3330 +    sqlite3VdbeAddOp1(v, OP_Statement, iDb);
  1.3331 +  }
  1.3332 +  if( (OMIT_TEMPDB || iDb!=1) && pParse->db->aDb[1].pBt!=0 ){
  1.3333 +    sqlite3BeginWriteOperation(pParse, setStatement, 1);
  1.3334 +  }
  1.3335 +}
  1.3336 +
  1.3337 +/*
  1.3338 +** Check to see if pIndex uses the collating sequence pColl.  Return
  1.3339 +** true if it does and false if it does not.
  1.3340 +*/
  1.3341 +#ifndef SQLITE_OMIT_REINDEX
  1.3342 +static int collationMatch(const char *zColl, Index *pIndex){
  1.3343 +  int i;
  1.3344 +  for(i=0; i<pIndex->nColumn; i++){
  1.3345 +    const char *z = pIndex->azColl[i];
  1.3346 +    if( z==zColl || (z && zColl && 0==sqlite3StrICmp(z, zColl)) ){
  1.3347 +      return 1;
  1.3348 +    }
  1.3349 +  }
  1.3350 +  return 0;
  1.3351 +}
  1.3352 +#endif
  1.3353 +
  1.3354 +/*
  1.3355 +** Recompute all indices of pTab that use the collating sequence pColl.
  1.3356 +** If pColl==0 then recompute all indices of pTab.
  1.3357 +*/
  1.3358 +#ifndef SQLITE_OMIT_REINDEX
  1.3359 +static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){
  1.3360 +  Index *pIndex;              /* An index associated with pTab */
  1.3361 +
  1.3362 +  for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
  1.3363 +    if( zColl==0 || collationMatch(zColl, pIndex) ){
  1.3364 +      int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
  1.3365 +      sqlite3BeginWriteOperation(pParse, 0, iDb);
  1.3366 +      sqlite3RefillIndex(pParse, pIndex, -1);
  1.3367 +    }
  1.3368 +  }
  1.3369 +}
  1.3370 +#endif
  1.3371 +
  1.3372 +/*
  1.3373 +** Recompute all indices of all tables in all databases where the
  1.3374 +** indices use the collating sequence pColl.  If pColl==0 then recompute
  1.3375 +** all indices everywhere.
  1.3376 +*/
  1.3377 +#ifndef SQLITE_OMIT_REINDEX
  1.3378 +static void reindexDatabases(Parse *pParse, char const *zColl){
  1.3379 +  Db *pDb;                    /* A single database */
  1.3380 +  int iDb;                    /* The database index number */
  1.3381 +  sqlite3 *db = pParse->db;   /* The database connection */
  1.3382 +  HashElem *k;                /* For looping over tables in pDb */
  1.3383 +  Table *pTab;                /* A table in the database */
  1.3384 +
  1.3385 +  for(iDb=0, pDb=db->aDb; iDb<db->nDb; iDb++, pDb++){
  1.3386 +    assert( pDb!=0 );
  1.3387 +    for(k=sqliteHashFirst(&pDb->pSchema->tblHash);  k; k=sqliteHashNext(k)){
  1.3388 +      pTab = (Table*)sqliteHashData(k);
  1.3389 +      reindexTable(pParse, pTab, zColl);
  1.3390 +    }
  1.3391 +  }
  1.3392 +}
  1.3393 +#endif
  1.3394 +
  1.3395 +/*
  1.3396 +** Generate code for the REINDEX command.
  1.3397 +**
  1.3398 +**        REINDEX                            -- 1
  1.3399 +**        REINDEX  <collation>               -- 2
  1.3400 +**        REINDEX  ?<database>.?<tablename>  -- 3
  1.3401 +**        REINDEX  ?<database>.?<indexname>  -- 4
  1.3402 +**
  1.3403 +** Form 1 causes all indices in all attached databases to be rebuilt.
  1.3404 +** Form 2 rebuilds all indices in all databases that use the named
  1.3405 +** collating function.  Forms 3 and 4 rebuild the named index or all
  1.3406 +** indices associated with the named table.
  1.3407 +*/
  1.3408 +#ifndef SQLITE_OMIT_REINDEX
  1.3409 +void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){
  1.3410 +  CollSeq *pColl;             /* Collating sequence to be reindexed, or NULL */
  1.3411 +  char *z;                    /* Name of a table or index */
  1.3412 +  const char *zDb;            /* Name of the database */
  1.3413 +  Table *pTab;                /* A table in the database */
  1.3414 +  Index *pIndex;              /* An index associated with pTab */
  1.3415 +  int iDb;                    /* The database index number */
  1.3416 +  sqlite3 *db = pParse->db;   /* The database connection */
  1.3417 +  Token *pObjName;            /* Name of the table or index to be reindexed */
  1.3418 +
  1.3419 +  /* Read the database schema. If an error occurs, leave an error message
  1.3420 +  ** and code in pParse and return NULL. */
  1.3421 +  if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){
  1.3422 +    return;
  1.3423 +  }
  1.3424 +
  1.3425 +  if( pName1==0 || pName1->z==0 ){
  1.3426 +    reindexDatabases(pParse, 0);
  1.3427 +    return;
  1.3428 +  }else if( pName2==0 || pName2->z==0 ){
  1.3429 +    char *zColl;
  1.3430 +    assert( pName1->z );
  1.3431 +    zColl = sqlite3NameFromToken(pParse->db, pName1);
  1.3432 +    if( !zColl ) return;
  1.3433 +    pColl = sqlite3FindCollSeq(db, ENC(db), zColl, -1, 0);
  1.3434 +    if( pColl ){
  1.3435 +      if( zColl ){
  1.3436 +        reindexDatabases(pParse, zColl);
  1.3437 +        sqlite3DbFree(db, zColl);
  1.3438 +      }
  1.3439 +      return;
  1.3440 +    }
  1.3441 +    sqlite3DbFree(db, zColl);
  1.3442 +  }
  1.3443 +  iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName);
  1.3444 +  if( iDb<0 ) return;
  1.3445 +  z = sqlite3NameFromToken(db, pObjName);
  1.3446 +  if( z==0 ) return;
  1.3447 +  zDb = db->aDb[iDb].zName;
  1.3448 +  pTab = sqlite3FindTable(db, z, zDb);
  1.3449 +  if( pTab ){
  1.3450 +    reindexTable(pParse, pTab, 0);
  1.3451 +    sqlite3DbFree(db, z);
  1.3452 +    return;
  1.3453 +  }
  1.3454 +  pIndex = sqlite3FindIndex(db, z, zDb);
  1.3455 +  sqlite3DbFree(db, z);
  1.3456 +  if( pIndex ){
  1.3457 +    sqlite3BeginWriteOperation(pParse, 0, iDb);
  1.3458 +    sqlite3RefillIndex(pParse, pIndex, -1);
  1.3459 +    return;
  1.3460 +  }
  1.3461 +  sqlite3ErrorMsg(pParse, "unable to identify the object to be reindexed");
  1.3462 +}
  1.3463 +#endif
  1.3464 +
  1.3465 +/*
  1.3466 +** Return a dynamicly allocated KeyInfo structure that can be used
  1.3467 +** with OP_OpenRead or OP_OpenWrite to access database index pIdx.
  1.3468 +**
  1.3469 +** If successful, a pointer to the new structure is returned. In this case
  1.3470 +** the caller is responsible for calling sqlite3DbFree(db, ) on the returned 
  1.3471 +** pointer. If an error occurs (out of memory or missing collation 
  1.3472 +** sequence), NULL is returned and the state of pParse updated to reflect
  1.3473 +** the error.
  1.3474 +*/
  1.3475 +KeyInfo *sqlite3IndexKeyinfo(Parse *pParse, Index *pIdx){
  1.3476 +  int i;
  1.3477 +  int nCol = pIdx->nColumn;
  1.3478 +  int nBytes = sizeof(KeyInfo) + (nCol-1)*sizeof(CollSeq*) + nCol;
  1.3479 +  sqlite3 *db = pParse->db;
  1.3480 +  KeyInfo *pKey = (KeyInfo *)sqlite3DbMallocZero(db, nBytes);
  1.3481 +
  1.3482 +  if( pKey ){
  1.3483 +    pKey->db = pParse->db;
  1.3484 +    pKey->aSortOrder = (u8 *)&(pKey->aColl[nCol]);
  1.3485 +    assert( &pKey->aSortOrder[nCol]==&(((u8 *)pKey)[nBytes]) );
  1.3486 +    for(i=0; i<nCol; i++){
  1.3487 +      char *zColl = pIdx->azColl[i];
  1.3488 +      assert( zColl );
  1.3489 +      pKey->aColl[i] = sqlite3LocateCollSeq(pParse, zColl, -1);
  1.3490 +      pKey->aSortOrder[i] = pIdx->aSortOrder[i];
  1.3491 +    }
  1.3492 +    pKey->nField = nCol;
  1.3493 +  }
  1.3494 +
  1.3495 +  if( pParse->nErr ){
  1.3496 +    sqlite3DbFree(db, pKey);
  1.3497 +    pKey = 0;
  1.3498 +  }
  1.3499 +  return pKey;
  1.3500 +}