os/persistentdata/persistentstorage/sqlite3api/SQLite/attach.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2003 April 6
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This file contains code used to implement the ATTACH and DETACH commands.
sl@0
    13
**
sl@0
    14
** $Id: attach.c,v 1.78 2008/08/20 16:35:10 drh Exp $
sl@0
    15
*/
sl@0
    16
#include "sqliteInt.h"
sl@0
    17
sl@0
    18
#ifndef SQLITE_OMIT_ATTACH
sl@0
    19
/*
sl@0
    20
** Resolve an expression that was part of an ATTACH or DETACH statement. This
sl@0
    21
** is slightly different from resolving a normal SQL expression, because simple
sl@0
    22
** identifiers are treated as strings, not possible column names or aliases.
sl@0
    23
**
sl@0
    24
** i.e. if the parser sees:
sl@0
    25
**
sl@0
    26
**     ATTACH DATABASE abc AS def
sl@0
    27
**
sl@0
    28
** it treats the two expressions as literal strings 'abc' and 'def' instead of
sl@0
    29
** looking for columns of the same name.
sl@0
    30
**
sl@0
    31
** This only applies to the root node of pExpr, so the statement:
sl@0
    32
**
sl@0
    33
**     ATTACH DATABASE abc||def AS 'db2'
sl@0
    34
**
sl@0
    35
** will fail because neither abc or def can be resolved.
sl@0
    36
*/
sl@0
    37
static int resolveAttachExpr(NameContext *pName, Expr *pExpr)
sl@0
    38
{
sl@0
    39
  int rc = SQLITE_OK;
sl@0
    40
  if( pExpr ){
sl@0
    41
    if( pExpr->op!=TK_ID ){
sl@0
    42
      rc = sqlite3ResolveExprNames(pName, pExpr);
sl@0
    43
      if( rc==SQLITE_OK && !sqlite3ExprIsConstant(pExpr) ){
sl@0
    44
        sqlite3ErrorMsg(pName->pParse, "invalid name: \"%T\"", &pExpr->span);
sl@0
    45
        return SQLITE_ERROR;
sl@0
    46
      }
sl@0
    47
    }else{
sl@0
    48
      pExpr->op = TK_STRING;
sl@0
    49
    }
sl@0
    50
  }
sl@0
    51
  return rc;
sl@0
    52
}
sl@0
    53
sl@0
    54
/*
sl@0
    55
** An SQL user-function registered to do the work of an ATTACH statement. The
sl@0
    56
** three arguments to the function come directly from an attach statement:
sl@0
    57
**
sl@0
    58
**     ATTACH DATABASE x AS y KEY z
sl@0
    59
**
sl@0
    60
**     SELECT sqlite_attach(x, y, z)
sl@0
    61
**
sl@0
    62
** If the optional "KEY z" syntax is omitted, an SQL NULL is passed as the
sl@0
    63
** third argument.
sl@0
    64
*/
sl@0
    65
static void attachFunc(
sl@0
    66
  sqlite3_context *context,
sl@0
    67
  int argc,
sl@0
    68
  sqlite3_value **argv
sl@0
    69
){
sl@0
    70
  int i;
sl@0
    71
  int rc = 0;
sl@0
    72
  sqlite3 *db = sqlite3_context_db_handle(context);
sl@0
    73
  const char *zName;
sl@0
    74
  const char *zFile;
sl@0
    75
  Db *aNew;
sl@0
    76
  char *zErrDyn = 0;
sl@0
    77
  char zErr[128];
sl@0
    78
sl@0
    79
  zFile = (const char *)sqlite3_value_text(argv[0]);
sl@0
    80
  zName = (const char *)sqlite3_value_text(argv[1]);
sl@0
    81
  if( zFile==0 ) zFile = "";
sl@0
    82
  if( zName==0 ) zName = "";
sl@0
    83
sl@0
    84
  /* Check for the following errors:
sl@0
    85
  **
sl@0
    86
  **     * Too many attached databases,
sl@0
    87
  **     * Transaction currently open
sl@0
    88
  **     * Specified database name already being used.
sl@0
    89
  */
sl@0
    90
  if( db->nDb>=db->aLimit[SQLITE_LIMIT_ATTACHED]+2 ){
sl@0
    91
    sqlite3_snprintf(
sl@0
    92
      sizeof(zErr), zErr, "too many attached databases - max %d", 
sl@0
    93
      db->aLimit[SQLITE_LIMIT_ATTACHED]
sl@0
    94
    );
sl@0
    95
    goto attach_error;
sl@0
    96
  }
sl@0
    97
  if( !db->autoCommit ){
sl@0
    98
    sqlite3_snprintf(sizeof(zErr), zErr,
sl@0
    99
                     "cannot ATTACH database within transaction");
sl@0
   100
    goto attach_error;
sl@0
   101
  }
sl@0
   102
  for(i=0; i<db->nDb; i++){
sl@0
   103
    char *z = db->aDb[i].zName;
sl@0
   104
    if( z && zName && sqlite3StrICmp(z, zName)==0 ){
sl@0
   105
      sqlite3_snprintf(sizeof(zErr), zErr, 
sl@0
   106
                       "database %s is already in use", zName);
sl@0
   107
      goto attach_error;
sl@0
   108
    }
sl@0
   109
  }
sl@0
   110
sl@0
   111
  /* Allocate the new entry in the db->aDb[] array and initialise the schema
sl@0
   112
  ** hash tables.
sl@0
   113
  */
sl@0
   114
  if( db->aDb==db->aDbStatic ){
sl@0
   115
    aNew = sqlite3DbMallocRaw(db, sizeof(db->aDb[0])*3 );
sl@0
   116
    if( aNew==0 ) return;
sl@0
   117
    memcpy(aNew, db->aDb, sizeof(db->aDb[0])*2);
sl@0
   118
  }else{
sl@0
   119
    aNew = sqlite3DbRealloc(db, db->aDb, sizeof(db->aDb[0])*(db->nDb+1) );
sl@0
   120
    if( aNew==0 ) return;
sl@0
   121
  }
sl@0
   122
  db->aDb = aNew;
sl@0
   123
  aNew = &db->aDb[db->nDb++];
sl@0
   124
  memset(aNew, 0, sizeof(*aNew));
sl@0
   125
sl@0
   126
  /* Open the database file. If the btree is successfully opened, use
sl@0
   127
  ** it to obtain the database schema. At this point the schema may
sl@0
   128
  ** or may not be initialised.
sl@0
   129
  */
sl@0
   130
  rc = sqlite3BtreeFactory(db, zFile, 0, SQLITE_DEFAULT_CACHE_SIZE,
sl@0
   131
                           db->openFlags | SQLITE_OPEN_MAIN_DB,
sl@0
   132
                           &aNew->pBt);
sl@0
   133
  if( rc==SQLITE_OK ){
sl@0
   134
    Pager *pPager;
sl@0
   135
    aNew->pSchema = sqlite3SchemaGet(db, aNew->pBt);
sl@0
   136
    if( !aNew->pSchema ){
sl@0
   137
      rc = SQLITE_NOMEM;
sl@0
   138
    }else if( aNew->pSchema->file_format && aNew->pSchema->enc!=ENC(db) ){
sl@0
   139
      sqlite3_snprintf(sizeof(zErr), zErr, 
sl@0
   140
        "attached databases must use the same text encoding as main database");
sl@0
   141
      goto attach_error;
sl@0
   142
    }
sl@0
   143
    pPager = sqlite3BtreePager(aNew->pBt);
sl@0
   144
    sqlite3PagerLockingMode(pPager, db->dfltLockMode);
sl@0
   145
    sqlite3PagerJournalMode(pPager, db->dfltJournalMode);
sl@0
   146
  }
sl@0
   147
  aNew->zName = sqlite3DbStrDup(db, zName);
sl@0
   148
  aNew->safety_level = 3;
sl@0
   149
sl@0
   150
#if SQLITE_HAS_CODEC
sl@0
   151
  {
sl@0
   152
    extern int sqlite3CodecAttach(sqlite3*, int, const void*, int);
sl@0
   153
    extern void sqlite3CodecGetKey(sqlite3*, int, void**, int*);
sl@0
   154
    int nKey;
sl@0
   155
    char *zKey;
sl@0
   156
    int t = sqlite3_value_type(argv[2]);
sl@0
   157
    switch( t ){
sl@0
   158
      case SQLITE_INTEGER:
sl@0
   159
      case SQLITE_FLOAT:
sl@0
   160
        zErrDyn = sqlite3DbStrDup(db, "Invalid key value");
sl@0
   161
        rc = SQLITE_ERROR;
sl@0
   162
        break;
sl@0
   163
        
sl@0
   164
      case SQLITE_TEXT:
sl@0
   165
      case SQLITE_BLOB:
sl@0
   166
        nKey = sqlite3_value_bytes(argv[2]);
sl@0
   167
        zKey = (char *)sqlite3_value_blob(argv[2]);
sl@0
   168
        sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
sl@0
   169
        break;
sl@0
   170
sl@0
   171
      case SQLITE_NULL:
sl@0
   172
        /* No key specified.  Use the key from the main database */
sl@0
   173
        sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey);
sl@0
   174
        sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
sl@0
   175
        break;
sl@0
   176
    }
sl@0
   177
  }
sl@0
   178
#endif
sl@0
   179
sl@0
   180
  /* If the file was opened successfully, read the schema for the new database.
sl@0
   181
  ** If this fails, or if opening the file failed, then close the file and 
sl@0
   182
  ** remove the entry from the db->aDb[] array. i.e. put everything back the way
sl@0
   183
  ** we found it.
sl@0
   184
  */
sl@0
   185
  if( rc==SQLITE_OK ){
sl@0
   186
    (void)sqlite3SafetyOn(db);
sl@0
   187
    sqlite3BtreeEnterAll(db);
sl@0
   188
    rc = sqlite3Init(db, &zErrDyn);
sl@0
   189
    sqlite3BtreeLeaveAll(db);
sl@0
   190
    (void)sqlite3SafetyOff(db);
sl@0
   191
  }
sl@0
   192
  if( rc ){
sl@0
   193
    int iDb = db->nDb - 1;
sl@0
   194
    assert( iDb>=2 );
sl@0
   195
    if( db->aDb[iDb].pBt ){
sl@0
   196
      sqlite3BtreeClose(db->aDb[iDb].pBt);
sl@0
   197
      db->aDb[iDb].pBt = 0;
sl@0
   198
      db->aDb[iDb].pSchema = 0;
sl@0
   199
    }
sl@0
   200
    sqlite3ResetInternalSchema(db, 0);
sl@0
   201
    db->nDb = iDb;
sl@0
   202
    if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){
sl@0
   203
      db->mallocFailed = 1;
sl@0
   204
      sqlite3_snprintf(sizeof(zErr),zErr, "out of memory");
sl@0
   205
    }else{
sl@0
   206
      sqlite3_snprintf(sizeof(zErr),zErr, "unable to open database: %s", zFile);
sl@0
   207
    }
sl@0
   208
    goto attach_error;
sl@0
   209
  }
sl@0
   210
  
sl@0
   211
  return;
sl@0
   212
sl@0
   213
attach_error:
sl@0
   214
  /* Return an error if we get here */
sl@0
   215
  if( zErrDyn ){
sl@0
   216
    sqlite3_result_error(context, zErrDyn, -1);
sl@0
   217
    sqlite3DbFree(db, zErrDyn);
sl@0
   218
  }else{
sl@0
   219
    zErr[sizeof(zErr)-1] = 0;
sl@0
   220
    sqlite3_result_error(context, zErr, -1);
sl@0
   221
  }
sl@0
   222
  if( rc ) sqlite3_result_error_code(context, rc);
sl@0
   223
}
sl@0
   224
sl@0
   225
/*
sl@0
   226
** An SQL user-function registered to do the work of an DETACH statement. The
sl@0
   227
** three arguments to the function come directly from a detach statement:
sl@0
   228
**
sl@0
   229
**     DETACH DATABASE x
sl@0
   230
**
sl@0
   231
**     SELECT sqlite_detach(x)
sl@0
   232
*/
sl@0
   233
static void detachFunc(
sl@0
   234
  sqlite3_context *context,
sl@0
   235
  int argc,
sl@0
   236
  sqlite3_value **argv
sl@0
   237
){
sl@0
   238
  const char *zName = (const char *)sqlite3_value_text(argv[0]);
sl@0
   239
  sqlite3 *db = sqlite3_context_db_handle(context);
sl@0
   240
  int i;
sl@0
   241
  Db *pDb = 0;
sl@0
   242
  char zErr[128];
sl@0
   243
sl@0
   244
  if( zName==0 ) zName = "";
sl@0
   245
  for(i=0; i<db->nDb; i++){
sl@0
   246
    pDb = &db->aDb[i];
sl@0
   247
    if( pDb->pBt==0 ) continue;
sl@0
   248
    if( sqlite3StrICmp(pDb->zName, zName)==0 ) break;
sl@0
   249
  }
sl@0
   250
sl@0
   251
  if( i>=db->nDb ){
sl@0
   252
    sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName);
sl@0
   253
    goto detach_error;
sl@0
   254
  }
sl@0
   255
  if( i<2 ){
sl@0
   256
    sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName);
sl@0
   257
    goto detach_error;
sl@0
   258
  }
sl@0
   259
  if( !db->autoCommit ){
sl@0
   260
    sqlite3_snprintf(sizeof(zErr), zErr,
sl@0
   261
                     "cannot DETACH database within transaction");
sl@0
   262
    goto detach_error;
sl@0
   263
  }
sl@0
   264
  if( sqlite3BtreeIsInReadTrans(pDb->pBt) ){
sl@0
   265
    sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName);
sl@0
   266
    goto detach_error;
sl@0
   267
  }
sl@0
   268
sl@0
   269
  sqlite3BtreeClose(pDb->pBt);
sl@0
   270
  pDb->pBt = 0;
sl@0
   271
  pDb->pSchema = 0;
sl@0
   272
  sqlite3ResetInternalSchema(db, 0);
sl@0
   273
  return;
sl@0
   274
sl@0
   275
detach_error:
sl@0
   276
  sqlite3_result_error(context, zErr, -1);
sl@0
   277
}
sl@0
   278
sl@0
   279
/*
sl@0
   280
** This procedure generates VDBE code for a single invocation of either the
sl@0
   281
** sqlite_detach() or sqlite_attach() SQL user functions.
sl@0
   282
*/
sl@0
   283
static void codeAttach(
sl@0
   284
  Parse *pParse,       /* The parser context */
sl@0
   285
  int type,            /* Either SQLITE_ATTACH or SQLITE_DETACH */
sl@0
   286
  const char *zFunc,   /* Either "sqlite_attach" or "sqlite_detach */
sl@0
   287
  int nFunc,           /* Number of args to pass to zFunc */
sl@0
   288
  Expr *pAuthArg,      /* Expression to pass to authorization callback */
sl@0
   289
  Expr *pFilename,     /* Name of database file */
sl@0
   290
  Expr *pDbname,       /* Name of the database to use internally */
sl@0
   291
  Expr *pKey           /* Database key for encryption extension */
sl@0
   292
){
sl@0
   293
  int rc;
sl@0
   294
  NameContext sName;
sl@0
   295
  Vdbe *v;
sl@0
   296
  FuncDef *pFunc;
sl@0
   297
  sqlite3* db = pParse->db;
sl@0
   298
  int regArgs;
sl@0
   299
sl@0
   300
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   301
  assert( db->mallocFailed || pAuthArg );
sl@0
   302
  if( pAuthArg ){
sl@0
   303
    char *zAuthArg = sqlite3NameFromToken(db, &pAuthArg->span);
sl@0
   304
    if( !zAuthArg ){
sl@0
   305
      goto attach_end;
sl@0
   306
    }
sl@0
   307
    rc = sqlite3AuthCheck(pParse, type, zAuthArg, 0, 0);
sl@0
   308
    sqlite3DbFree(db, zAuthArg);
sl@0
   309
    if(rc!=SQLITE_OK ){
sl@0
   310
      goto attach_end;
sl@0
   311
    }
sl@0
   312
  }
sl@0
   313
#endif /* SQLITE_OMIT_AUTHORIZATION */
sl@0
   314
sl@0
   315
  memset(&sName, 0, sizeof(NameContext));
sl@0
   316
  sName.pParse = pParse;
sl@0
   317
sl@0
   318
  if( 
sl@0
   319
      SQLITE_OK!=(rc = resolveAttachExpr(&sName, pFilename)) ||
sl@0
   320
      SQLITE_OK!=(rc = resolveAttachExpr(&sName, pDbname)) ||
sl@0
   321
      SQLITE_OK!=(rc = resolveAttachExpr(&sName, pKey))
sl@0
   322
  ){
sl@0
   323
    pParse->nErr++;
sl@0
   324
    goto attach_end;
sl@0
   325
  }
sl@0
   326
sl@0
   327
  v = sqlite3GetVdbe(pParse);
sl@0
   328
  regArgs = sqlite3GetTempRange(pParse, 4);
sl@0
   329
  sqlite3ExprCode(pParse, pFilename, regArgs);
sl@0
   330
  sqlite3ExprCode(pParse, pDbname, regArgs+1);
sl@0
   331
  sqlite3ExprCode(pParse, pKey, regArgs+2);
sl@0
   332
sl@0
   333
  assert( v || db->mallocFailed );
sl@0
   334
  if( v ){
sl@0
   335
    sqlite3VdbeAddOp3(v, OP_Function, 0, regArgs+3-nFunc, regArgs+3);
sl@0
   336
    sqlite3VdbeChangeP5(v, nFunc);
sl@0
   337
    pFunc = sqlite3FindFunction(db, zFunc, strlen(zFunc), nFunc, SQLITE_UTF8,0);
sl@0
   338
    sqlite3VdbeChangeP4(v, -1, (char *)pFunc, P4_FUNCDEF);
sl@0
   339
sl@0
   340
    /* Code an OP_Expire. For an ATTACH statement, set P1 to true (expire this
sl@0
   341
    ** statement only). For DETACH, set it to false (expire all existing
sl@0
   342
    ** statements).
sl@0
   343
    */
sl@0
   344
    sqlite3VdbeAddOp1(v, OP_Expire, (type==SQLITE_ATTACH));
sl@0
   345
  }
sl@0
   346
  
sl@0
   347
attach_end:
sl@0
   348
  sqlite3ExprDelete(db, pFilename);
sl@0
   349
  sqlite3ExprDelete(db, pDbname);
sl@0
   350
  sqlite3ExprDelete(db, pKey);
sl@0
   351
}
sl@0
   352
sl@0
   353
/*
sl@0
   354
** Called by the parser to compile a DETACH statement.
sl@0
   355
**
sl@0
   356
**     DETACH pDbname
sl@0
   357
*/
sl@0
   358
void sqlite3Detach(Parse *pParse, Expr *pDbname){
sl@0
   359
  codeAttach(pParse, SQLITE_DETACH, "sqlite_detach", 1, pDbname, 0, 0, pDbname);
sl@0
   360
}
sl@0
   361
sl@0
   362
/*
sl@0
   363
** Called by the parser to compile an ATTACH statement.
sl@0
   364
**
sl@0
   365
**     ATTACH p AS pDbname KEY pKey
sl@0
   366
*/
sl@0
   367
void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){
sl@0
   368
  codeAttach(pParse, SQLITE_ATTACH, "sqlite_attach", 3, p, p, pDbname, pKey);
sl@0
   369
}
sl@0
   370
#endif /* SQLITE_OMIT_ATTACH */
sl@0
   371
sl@0
   372
/*
sl@0
   373
** Register the functions sqlite_attach and sqlite_detach.
sl@0
   374
*/
sl@0
   375
void sqlite3AttachFunctions(sqlite3 *db){
sl@0
   376
#ifndef SQLITE_OMIT_ATTACH
sl@0
   377
  static const int enc = SQLITE_UTF8;
sl@0
   378
  sqlite3CreateFunc(db, "sqlite_attach", 3, enc, 0, attachFunc, 0, 0);
sl@0
   379
  sqlite3CreateFunc(db, "sqlite_detach", 1, enc, 0, detachFunc, 0, 0);
sl@0
   380
#endif
sl@0
   381
}
sl@0
   382
sl@0
   383
/*
sl@0
   384
** Initialize a DbFixer structure.  This routine must be called prior
sl@0
   385
** to passing the structure to one of the sqliteFixAAAA() routines below.
sl@0
   386
**
sl@0
   387
** The return value indicates whether or not fixation is required.  TRUE
sl@0
   388
** means we do need to fix the database references, FALSE means we do not.
sl@0
   389
*/
sl@0
   390
int sqlite3FixInit(
sl@0
   391
  DbFixer *pFix,      /* The fixer to be initialized */
sl@0
   392
  Parse *pParse,      /* Error messages will be written here */
sl@0
   393
  int iDb,            /* This is the database that must be used */
sl@0
   394
  const char *zType,  /* "view", "trigger", or "index" */
sl@0
   395
  const Token *pName  /* Name of the view, trigger, or index */
sl@0
   396
){
sl@0
   397
  sqlite3 *db;
sl@0
   398
sl@0
   399
  if( iDb<0 || iDb==1 ) return 0;
sl@0
   400
  db = pParse->db;
sl@0
   401
  assert( db->nDb>iDb );
sl@0
   402
  pFix->pParse = pParse;
sl@0
   403
  pFix->zDb = db->aDb[iDb].zName;
sl@0
   404
  pFix->zType = zType;
sl@0
   405
  pFix->pName = pName;
sl@0
   406
  return 1;
sl@0
   407
}
sl@0
   408
sl@0
   409
/*
sl@0
   410
** The following set of routines walk through the parse tree and assign
sl@0
   411
** a specific database to all table references where the database name
sl@0
   412
** was left unspecified in the original SQL statement.  The pFix structure
sl@0
   413
** must have been initialized by a prior call to sqlite3FixInit().
sl@0
   414
**
sl@0
   415
** These routines are used to make sure that an index, trigger, or
sl@0
   416
** view in one database does not refer to objects in a different database.
sl@0
   417
** (Exception: indices, triggers, and views in the TEMP database are
sl@0
   418
** allowed to refer to anything.)  If a reference is explicitly made
sl@0
   419
** to an object in a different database, an error message is added to
sl@0
   420
** pParse->zErrMsg and these routines return non-zero.  If everything
sl@0
   421
** checks out, these routines return 0.
sl@0
   422
*/
sl@0
   423
int sqlite3FixSrcList(
sl@0
   424
  DbFixer *pFix,       /* Context of the fixation */
sl@0
   425
  SrcList *pList       /* The Source list to check and modify */
sl@0
   426
){
sl@0
   427
  int i;
sl@0
   428
  const char *zDb;
sl@0
   429
  struct SrcList_item *pItem;
sl@0
   430
sl@0
   431
  if( pList==0 ) return 0;
sl@0
   432
  zDb = pFix->zDb;
sl@0
   433
  for(i=0, pItem=pList->a; i<pList->nSrc; i++, pItem++){
sl@0
   434
    if( pItem->zDatabase==0 ){
sl@0
   435
      pItem->zDatabase = sqlite3DbStrDup(pFix->pParse->db, zDb);
sl@0
   436
    }else if( sqlite3StrICmp(pItem->zDatabase,zDb)!=0 ){
sl@0
   437
      sqlite3ErrorMsg(pFix->pParse,
sl@0
   438
         "%s %T cannot reference objects in database %s",
sl@0
   439
         pFix->zType, pFix->pName, pItem->zDatabase);
sl@0
   440
      return 1;
sl@0
   441
    }
sl@0
   442
#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER)
sl@0
   443
    if( sqlite3FixSelect(pFix, pItem->pSelect) ) return 1;
sl@0
   444
    if( sqlite3FixExpr(pFix, pItem->pOn) ) return 1;
sl@0
   445
#endif
sl@0
   446
  }
sl@0
   447
  return 0;
sl@0
   448
}
sl@0
   449
#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER)
sl@0
   450
int sqlite3FixSelect(
sl@0
   451
  DbFixer *pFix,       /* Context of the fixation */
sl@0
   452
  Select *pSelect      /* The SELECT statement to be fixed to one database */
sl@0
   453
){
sl@0
   454
  while( pSelect ){
sl@0
   455
    if( sqlite3FixExprList(pFix, pSelect->pEList) ){
sl@0
   456
      return 1;
sl@0
   457
    }
sl@0
   458
    if( sqlite3FixSrcList(pFix, pSelect->pSrc) ){
sl@0
   459
      return 1;
sl@0
   460
    }
sl@0
   461
    if( sqlite3FixExpr(pFix, pSelect->pWhere) ){
sl@0
   462
      return 1;
sl@0
   463
    }
sl@0
   464
    if( sqlite3FixExpr(pFix, pSelect->pHaving) ){
sl@0
   465
      return 1;
sl@0
   466
    }
sl@0
   467
    pSelect = pSelect->pPrior;
sl@0
   468
  }
sl@0
   469
  return 0;
sl@0
   470
}
sl@0
   471
int sqlite3FixExpr(
sl@0
   472
  DbFixer *pFix,     /* Context of the fixation */
sl@0
   473
  Expr *pExpr        /* The expression to be fixed to one database */
sl@0
   474
){
sl@0
   475
  while( pExpr ){
sl@0
   476
    if( sqlite3FixSelect(pFix, pExpr->pSelect) ){
sl@0
   477
      return 1;
sl@0
   478
    }
sl@0
   479
    if( sqlite3FixExprList(pFix, pExpr->pList) ){
sl@0
   480
      return 1;
sl@0
   481
    }
sl@0
   482
    if( sqlite3FixExpr(pFix, pExpr->pRight) ){
sl@0
   483
      return 1;
sl@0
   484
    }
sl@0
   485
    pExpr = pExpr->pLeft;
sl@0
   486
  }
sl@0
   487
  return 0;
sl@0
   488
}
sl@0
   489
int sqlite3FixExprList(
sl@0
   490
  DbFixer *pFix,     /* Context of the fixation */
sl@0
   491
  ExprList *pList    /* The expression to be fixed to one database */
sl@0
   492
){
sl@0
   493
  int i;
sl@0
   494
  struct ExprList_item *pItem;
sl@0
   495
  if( pList==0 ) return 0;
sl@0
   496
  for(i=0, pItem=pList->a; i<pList->nExpr; i++, pItem++){
sl@0
   497
    if( sqlite3FixExpr(pFix, pItem->pExpr) ){
sl@0
   498
      return 1;
sl@0
   499
    }
sl@0
   500
  }
sl@0
   501
  return 0;
sl@0
   502
}
sl@0
   503
#endif
sl@0
   504
sl@0
   505
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   506
int sqlite3FixTriggerStep(
sl@0
   507
  DbFixer *pFix,     /* Context of the fixation */
sl@0
   508
  TriggerStep *pStep /* The trigger step be fixed to one database */
sl@0
   509
){
sl@0
   510
  while( pStep ){
sl@0
   511
    if( sqlite3FixSelect(pFix, pStep->pSelect) ){
sl@0
   512
      return 1;
sl@0
   513
    }
sl@0
   514
    if( sqlite3FixExpr(pFix, pStep->pWhere) ){
sl@0
   515
      return 1;
sl@0
   516
    }
sl@0
   517
    if( sqlite3FixExprList(pFix, pStep->pExprList) ){
sl@0
   518
      return 1;
sl@0
   519
    }
sl@0
   520
    pStep = pStep->pNext;
sl@0
   521
  }
sl@0
   522
  return 0;
sl@0
   523
}
sl@0
   524
#endif