os/persistentdata/persistentstorage/sql/SQLite364/alter.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
** 2005 February 15
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 C code routines that used to generate VDBE code
sl@0
    13
** that implements the ALTER TABLE command.
sl@0
    14
**
sl@0
    15
** $Id: alter.c,v 1.48 2008/08/08 14:19:41 drh Exp $
sl@0
    16
*/
sl@0
    17
#include "sqliteInt.h"
sl@0
    18
#include <ctype.h>
sl@0
    19
sl@0
    20
/*
sl@0
    21
** The code in this file only exists if we are not omitting the
sl@0
    22
** ALTER TABLE logic from the build.
sl@0
    23
*/
sl@0
    24
#ifndef SQLITE_OMIT_ALTERTABLE
sl@0
    25
sl@0
    26
sl@0
    27
/*
sl@0
    28
** This function is used by SQL generated to implement the 
sl@0
    29
** ALTER TABLE command. The first argument is the text of a CREATE TABLE or
sl@0
    30
** CREATE INDEX command. The second is a table name. The table name in 
sl@0
    31
** the CREATE TABLE or CREATE INDEX statement is replaced with the third
sl@0
    32
** argument and the result returned. Examples:
sl@0
    33
**
sl@0
    34
** sqlite_rename_table('CREATE TABLE abc(a, b, c)', 'def')
sl@0
    35
**     -> 'CREATE TABLE def(a, b, c)'
sl@0
    36
**
sl@0
    37
** sqlite_rename_table('CREATE INDEX i ON abc(a)', 'def')
sl@0
    38
**     -> 'CREATE INDEX i ON def(a, b, c)'
sl@0
    39
*/
sl@0
    40
static void renameTableFunc(
sl@0
    41
  sqlite3_context *context,
sl@0
    42
  int argc,
sl@0
    43
  sqlite3_value **argv
sl@0
    44
){
sl@0
    45
  unsigned char const *zSql = sqlite3_value_text(argv[0]);
sl@0
    46
  unsigned char const *zTableName = sqlite3_value_text(argv[1]);
sl@0
    47
sl@0
    48
  int token;
sl@0
    49
  Token tname;
sl@0
    50
  unsigned char const *zCsr = zSql;
sl@0
    51
  int len = 0;
sl@0
    52
  char *zRet;
sl@0
    53
sl@0
    54
  sqlite3 *db = sqlite3_context_db_handle(context);
sl@0
    55
sl@0
    56
  /* The principle used to locate the table name in the CREATE TABLE 
sl@0
    57
  ** statement is that the table name is the first non-space token that
sl@0
    58
  ** is immediately followed by a TK_LP or TK_USING token.
sl@0
    59
  */
sl@0
    60
  if( zSql ){
sl@0
    61
    do {
sl@0
    62
      if( !*zCsr ){
sl@0
    63
        /* Ran out of input before finding an opening bracket. Return NULL. */
sl@0
    64
        return;
sl@0
    65
      }
sl@0
    66
sl@0
    67
      /* Store the token that zCsr points to in tname. */
sl@0
    68
      tname.z = zCsr;
sl@0
    69
      tname.n = len;
sl@0
    70
sl@0
    71
      /* Advance zCsr to the next token. Store that token type in 'token',
sl@0
    72
      ** and its length in 'len' (to be used next iteration of this loop).
sl@0
    73
      */
sl@0
    74
      do {
sl@0
    75
        zCsr += len;
sl@0
    76
        len = sqlite3GetToken(zCsr, &token);
sl@0
    77
      } while( token==TK_SPACE );
sl@0
    78
      assert( len>0 );
sl@0
    79
    } while( token!=TK_LP && token!=TK_USING );
sl@0
    80
sl@0
    81
    zRet = sqlite3MPrintf(db, "%.*s\"%w\"%s", tname.z - zSql, zSql, 
sl@0
    82
       zTableName, tname.z+tname.n);
sl@0
    83
    sqlite3_result_text(context, zRet, -1, SQLITE_DYNAMIC);
sl@0
    84
  }
sl@0
    85
}
sl@0
    86
sl@0
    87
#ifndef SQLITE_OMIT_TRIGGER
sl@0
    88
/* This function is used by SQL generated to implement the
sl@0
    89
** ALTER TABLE command. The first argument is the text of a CREATE TRIGGER 
sl@0
    90
** statement. The second is a table name. The table name in the CREATE 
sl@0
    91
** TRIGGER statement is replaced with the third argument and the result 
sl@0
    92
** returned. This is analagous to renameTableFunc() above, except for CREATE
sl@0
    93
** TRIGGER, not CREATE INDEX and CREATE TABLE.
sl@0
    94
*/
sl@0
    95
static void renameTriggerFunc(
sl@0
    96
  sqlite3_context *context,
sl@0
    97
  int argc,
sl@0
    98
  sqlite3_value **argv
sl@0
    99
){
sl@0
   100
  unsigned char const *zSql = sqlite3_value_text(argv[0]);
sl@0
   101
  unsigned char const *zTableName = sqlite3_value_text(argv[1]);
sl@0
   102
sl@0
   103
  int token;
sl@0
   104
  Token tname;
sl@0
   105
  int dist = 3;
sl@0
   106
  unsigned char const *zCsr = zSql;
sl@0
   107
  int len = 0;
sl@0
   108
  char *zRet;
sl@0
   109
sl@0
   110
  sqlite3 *db = sqlite3_context_db_handle(context);
sl@0
   111
sl@0
   112
  /* The principle used to locate the table name in the CREATE TRIGGER 
sl@0
   113
  ** statement is that the table name is the first token that is immediatedly
sl@0
   114
  ** preceded by either TK_ON or TK_DOT and immediatedly followed by one
sl@0
   115
  ** of TK_WHEN, TK_BEGIN or TK_FOR.
sl@0
   116
  */
sl@0
   117
  if( zSql ){
sl@0
   118
    do {
sl@0
   119
sl@0
   120
      if( !*zCsr ){
sl@0
   121
        /* Ran out of input before finding the table name. Return NULL. */
sl@0
   122
        return;
sl@0
   123
      }
sl@0
   124
sl@0
   125
      /* Store the token that zCsr points to in tname. */
sl@0
   126
      tname.z = zCsr;
sl@0
   127
      tname.n = len;
sl@0
   128
sl@0
   129
      /* Advance zCsr to the next token. Store that token type in 'token',
sl@0
   130
      ** and its length in 'len' (to be used next iteration of this loop).
sl@0
   131
      */
sl@0
   132
      do {
sl@0
   133
        zCsr += len;
sl@0
   134
        len = sqlite3GetToken(zCsr, &token);
sl@0
   135
      }while( token==TK_SPACE );
sl@0
   136
      assert( len>0 );
sl@0
   137
sl@0
   138
      /* Variable 'dist' stores the number of tokens read since the most
sl@0
   139
      ** recent TK_DOT or TK_ON. This means that when a WHEN, FOR or BEGIN 
sl@0
   140
      ** token is read and 'dist' equals 2, the condition stated above
sl@0
   141
      ** to be met.
sl@0
   142
      **
sl@0
   143
      ** Note that ON cannot be a database, table or column name, so
sl@0
   144
      ** there is no need to worry about syntax like 
sl@0
   145
      ** "CREATE TRIGGER ... ON ON.ON BEGIN ..." etc.
sl@0
   146
      */
sl@0
   147
      dist++;
sl@0
   148
      if( token==TK_DOT || token==TK_ON ){
sl@0
   149
        dist = 0;
sl@0
   150
      }
sl@0
   151
    } while( dist!=2 || (token!=TK_WHEN && token!=TK_FOR && token!=TK_BEGIN) );
sl@0
   152
sl@0
   153
    /* Variable tname now contains the token that is the old table-name
sl@0
   154
    ** in the CREATE TRIGGER statement.
sl@0
   155
    */
sl@0
   156
    zRet = sqlite3MPrintf(db, "%.*s\"%w\"%s", tname.z - zSql, zSql, 
sl@0
   157
       zTableName, tname.z+tname.n);
sl@0
   158
    sqlite3_result_text(context, zRet, -1, SQLITE_DYNAMIC);
sl@0
   159
  }
sl@0
   160
}
sl@0
   161
#endif   /* !SQLITE_OMIT_TRIGGER */
sl@0
   162
sl@0
   163
/*
sl@0
   164
** Register built-in functions used to help implement ALTER TABLE
sl@0
   165
*/
sl@0
   166
void sqlite3AlterFunctions(sqlite3 *db){
sl@0
   167
  sqlite3CreateFunc(db, "sqlite_rename_table", 2, SQLITE_UTF8, 0,
sl@0
   168
                         renameTableFunc, 0, 0);
sl@0
   169
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   170
  sqlite3CreateFunc(db, "sqlite_rename_trigger", 2, SQLITE_UTF8, 0,
sl@0
   171
                         renameTriggerFunc, 0, 0);
sl@0
   172
#endif
sl@0
   173
}
sl@0
   174
sl@0
   175
/*
sl@0
   176
** Generate the text of a WHERE expression which can be used to select all
sl@0
   177
** temporary triggers on table pTab from the sqlite_temp_master table. If
sl@0
   178
** table pTab has no temporary triggers, or is itself stored in the 
sl@0
   179
** temporary database, NULL is returned.
sl@0
   180
*/
sl@0
   181
static char *whereTempTriggers(Parse *pParse, Table *pTab){
sl@0
   182
  Trigger *pTrig;
sl@0
   183
  char *zWhere = 0;
sl@0
   184
  char *tmp = 0;
sl@0
   185
  const Schema *pTempSchema = pParse->db->aDb[1].pSchema; /* Temp db schema */
sl@0
   186
sl@0
   187
  /* If the table is not located in the temp-db (in which case NULL is 
sl@0
   188
  ** returned, loop through the tables list of triggers. For each trigger
sl@0
   189
  ** that is not part of the temp-db schema, add a clause to the WHERE 
sl@0
   190
  ** expression being built up in zWhere.
sl@0
   191
  */
sl@0
   192
  if( pTab->pSchema!=pTempSchema ){
sl@0
   193
    sqlite3 *db = pParse->db;
sl@0
   194
    for( pTrig=pTab->pTrigger; pTrig; pTrig=pTrig->pNext ){
sl@0
   195
      if( pTrig->pSchema==pTempSchema ){
sl@0
   196
        if( !zWhere ){
sl@0
   197
          zWhere = sqlite3MPrintf(db, "name=%Q", pTrig->name);
sl@0
   198
        }else{
sl@0
   199
          tmp = zWhere;
sl@0
   200
          zWhere = sqlite3MPrintf(db, "%s OR name=%Q", zWhere, pTrig->name);
sl@0
   201
          sqlite3DbFree(db, tmp);
sl@0
   202
        }
sl@0
   203
      }
sl@0
   204
    }
sl@0
   205
  }
sl@0
   206
  return zWhere;
sl@0
   207
}
sl@0
   208
sl@0
   209
/*
sl@0
   210
** Generate code to drop and reload the internal representation of table
sl@0
   211
** pTab from the database, including triggers and temporary triggers.
sl@0
   212
** Argument zName is the name of the table in the database schema at
sl@0
   213
** the time the generated code is executed. This can be different from
sl@0
   214
** pTab->zName if this function is being called to code part of an 
sl@0
   215
** "ALTER TABLE RENAME TO" statement.
sl@0
   216
*/
sl@0
   217
static void reloadTableSchema(Parse *pParse, Table *pTab, const char *zName){
sl@0
   218
  Vdbe *v;
sl@0
   219
  char *zWhere;
sl@0
   220
  int iDb;                   /* Index of database containing pTab */
sl@0
   221
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   222
  Trigger *pTrig;
sl@0
   223
#endif
sl@0
   224
sl@0
   225
  v = sqlite3GetVdbe(pParse);
sl@0
   226
  if( !v ) return;
sl@0
   227
  assert( sqlite3BtreeHoldsAllMutexes(pParse->db) );
sl@0
   228
  iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
sl@0
   229
  assert( iDb>=0 );
sl@0
   230
sl@0
   231
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   232
  /* Drop any table triggers from the internal schema. */
sl@0
   233
  for(pTrig=pTab->pTrigger; pTrig; pTrig=pTrig->pNext){
sl@0
   234
    int iTrigDb = sqlite3SchemaToIndex(pParse->db, pTrig->pSchema);
sl@0
   235
    assert( iTrigDb==iDb || iTrigDb==1 );
sl@0
   236
    sqlite3VdbeAddOp4(v, OP_DropTrigger, iTrigDb, 0, 0, pTrig->name, 0);
sl@0
   237
  }
sl@0
   238
#endif
sl@0
   239
sl@0
   240
  /* Drop the table and index from the internal schema */
sl@0
   241
  sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0);
sl@0
   242
sl@0
   243
  /* Reload the table, index and permanent trigger schemas. */
sl@0
   244
  zWhere = sqlite3MPrintf(pParse->db, "tbl_name=%Q", zName);
sl@0
   245
  if( !zWhere ) return;
sl@0
   246
  sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
sl@0
   247
sl@0
   248
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   249
  /* Now, if the table is not stored in the temp database, reload any temp 
sl@0
   250
  ** triggers. Don't use IN(...) in case SQLITE_OMIT_SUBQUERY is defined. 
sl@0
   251
  */
sl@0
   252
  if( (zWhere=whereTempTriggers(pParse, pTab))!=0 ){
sl@0
   253
    sqlite3VdbeAddOp4(v, OP_ParseSchema, 1, 0, 0, zWhere, P4_DYNAMIC);
sl@0
   254
  }
sl@0
   255
#endif
sl@0
   256
}
sl@0
   257
sl@0
   258
/*
sl@0
   259
** Generate code to implement the "ALTER TABLE xxx RENAME TO yyy" 
sl@0
   260
** command. 
sl@0
   261
*/
sl@0
   262
void sqlite3AlterRenameTable(
sl@0
   263
  Parse *pParse,            /* Parser context. */
sl@0
   264
  SrcList *pSrc,            /* The table to rename. */
sl@0
   265
  Token *pName              /* The new table name. */
sl@0
   266
){
sl@0
   267
  int iDb;                  /* Database that contains the table */
sl@0
   268
  char *zDb;                /* Name of database iDb */
sl@0
   269
  Table *pTab;              /* Table being renamed */
sl@0
   270
  char *zName = 0;          /* NULL-terminated version of pName */ 
sl@0
   271
  sqlite3 *db = pParse->db; /* Database connection */
sl@0
   272
  int nTabName;             /* Number of UTF-8 characters in zTabName */
sl@0
   273
  const char *zTabName;     /* Original name of the table */
sl@0
   274
  Vdbe *v;
sl@0
   275
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   276
  char *zWhere = 0;         /* Where clause to locate temp triggers */
sl@0
   277
#endif
sl@0
   278
  int isVirtualRename = 0;  /* True if this is a v-table with an xRename() */
sl@0
   279
  
sl@0
   280
  if( db->mallocFailed ) goto exit_rename_table;
sl@0
   281
  assert( pSrc->nSrc==1 );
sl@0
   282
  assert( sqlite3BtreeHoldsAllMutexes(pParse->db) );
sl@0
   283
sl@0
   284
  pTab = sqlite3LocateTable(pParse, 0, pSrc->a[0].zName, pSrc->a[0].zDatabase);
sl@0
   285
  if( !pTab ) goto exit_rename_table;
sl@0
   286
  iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
sl@0
   287
  zDb = db->aDb[iDb].zName;
sl@0
   288
sl@0
   289
  /* Get a NULL terminated version of the new table name. */
sl@0
   290
  zName = sqlite3NameFromToken(db, pName);
sl@0
   291
  if( !zName ) goto exit_rename_table;
sl@0
   292
sl@0
   293
  /* Check that a table or index named 'zName' does not already exist
sl@0
   294
  ** in database iDb. If so, this is an error.
sl@0
   295
  */
sl@0
   296
  if( sqlite3FindTable(db, zName, zDb) || sqlite3FindIndex(db, zName, zDb) ){
sl@0
   297
    sqlite3ErrorMsg(pParse, 
sl@0
   298
        "there is already another table or index with this name: %s", zName);
sl@0
   299
    goto exit_rename_table;
sl@0
   300
  }
sl@0
   301
sl@0
   302
  /* Make sure it is not a system table being altered, or a reserved name
sl@0
   303
  ** that the table is being renamed to.
sl@0
   304
  */
sl@0
   305
  if( strlen(pTab->zName)>6 && 0==sqlite3StrNICmp(pTab->zName, "sqlite_", 7) ){
sl@0
   306
    sqlite3ErrorMsg(pParse, "table %s may not be altered", pTab->zName);
sl@0
   307
    goto exit_rename_table;
sl@0
   308
  }
sl@0
   309
  if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){
sl@0
   310
    goto exit_rename_table;
sl@0
   311
  }
sl@0
   312
sl@0
   313
#ifndef SQLITE_OMIT_VIEW
sl@0
   314
  if( pTab->pSelect ){
sl@0
   315
    sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName);
sl@0
   316
    goto exit_rename_table;
sl@0
   317
  }
sl@0
   318
#endif
sl@0
   319
sl@0
   320
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   321
  /* Invoke the authorization callback. */
sl@0
   322
  if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){
sl@0
   323
    goto exit_rename_table;
sl@0
   324
  }
sl@0
   325
#endif
sl@0
   326
sl@0
   327
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   328
  if( sqlite3ViewGetColumnNames(pParse, pTab) ){
sl@0
   329
    goto exit_rename_table;
sl@0
   330
  }
sl@0
   331
  if( IsVirtual(pTab) && pTab->pMod->pModule->xRename ){
sl@0
   332
    isVirtualRename = 1;
sl@0
   333
  }
sl@0
   334
#endif
sl@0
   335
sl@0
   336
  /* Begin a transaction and code the VerifyCookie for database iDb. 
sl@0
   337
  ** Then modify the schema cookie (since the ALTER TABLE modifies the
sl@0
   338
  ** schema). Open a statement transaction if the table is a virtual
sl@0
   339
  ** table.
sl@0
   340
  */
sl@0
   341
  v = sqlite3GetVdbe(pParse);
sl@0
   342
  if( v==0 ){
sl@0
   343
    goto exit_rename_table;
sl@0
   344
  }
sl@0
   345
  sqlite3BeginWriteOperation(pParse, isVirtualRename, iDb);
sl@0
   346
  sqlite3ChangeCookie(pParse, iDb);
sl@0
   347
sl@0
   348
  /* If this is a virtual table, invoke the xRename() function if
sl@0
   349
  ** one is defined. The xRename() callback will modify the names
sl@0
   350
  ** of any resources used by the v-table implementation (including other
sl@0
   351
  ** SQLite tables) that are identified by the name of the virtual table.
sl@0
   352
  */
sl@0
   353
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   354
  if( isVirtualRename ){
sl@0
   355
    int i = ++pParse->nMem;
sl@0
   356
    sqlite3VdbeAddOp4(v, OP_String8, 0, i, 0, zName, 0);
sl@0
   357
    sqlite3VdbeAddOp4(v, OP_VRename, i, 0, 0,(const char*)pTab->pVtab, P4_VTAB);
sl@0
   358
  }
sl@0
   359
#endif
sl@0
   360
sl@0
   361
  /* figure out how many UTF-8 characters are in zName */
sl@0
   362
  zTabName = pTab->zName;
sl@0
   363
  nTabName = sqlite3Utf8CharLen(zTabName, -1);
sl@0
   364
sl@0
   365
  /* Modify the sqlite_master table to use the new table name. */
sl@0
   366
  sqlite3NestedParse(pParse,
sl@0
   367
      "UPDATE %Q.%s SET "
sl@0
   368
#ifdef SQLITE_OMIT_TRIGGER
sl@0
   369
          "sql = sqlite_rename_table(sql, %Q), "
sl@0
   370
#else
sl@0
   371
          "sql = CASE "
sl@0
   372
            "WHEN type = 'trigger' THEN sqlite_rename_trigger(sql, %Q)"
sl@0
   373
            "ELSE sqlite_rename_table(sql, %Q) END, "
sl@0
   374
#endif
sl@0
   375
          "tbl_name = %Q, "
sl@0
   376
          "name = CASE "
sl@0
   377
            "WHEN type='table' THEN %Q "
sl@0
   378
            "WHEN name LIKE 'sqlite_autoindex%%' AND type='index' THEN "
sl@0
   379
             "'sqlite_autoindex_' || %Q || substr(name,%d+18) "
sl@0
   380
            "ELSE name END "
sl@0
   381
      "WHERE tbl_name=%Q AND "
sl@0
   382
          "(type='table' OR type='index' OR type='trigger');", 
sl@0
   383
      zDb, SCHEMA_TABLE(iDb), zName, zName, zName, 
sl@0
   384
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   385
      zName,
sl@0
   386
#endif
sl@0
   387
      zName, nTabName, zTabName
sl@0
   388
  );
sl@0
   389
sl@0
   390
#ifndef SQLITE_OMIT_AUTOINCREMENT
sl@0
   391
  /* If the sqlite_sequence table exists in this database, then update 
sl@0
   392
  ** it with the new table name.
sl@0
   393
  */
sl@0
   394
  if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){
sl@0
   395
    sqlite3NestedParse(pParse,
sl@0
   396
        "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q",
sl@0
   397
        zDb, zName, pTab->zName);
sl@0
   398
  }
sl@0
   399
#endif
sl@0
   400
sl@0
   401
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   402
  /* If there are TEMP triggers on this table, modify the sqlite_temp_master
sl@0
   403
  ** table. Don't do this if the table being ALTERed is itself located in
sl@0
   404
  ** the temp database.
sl@0
   405
  */
sl@0
   406
  if( (zWhere=whereTempTriggers(pParse, pTab))!=0 ){
sl@0
   407
    sqlite3NestedParse(pParse, 
sl@0
   408
        "UPDATE sqlite_temp_master SET "
sl@0
   409
            "sql = sqlite_rename_trigger(sql, %Q), "
sl@0
   410
            "tbl_name = %Q "
sl@0
   411
            "WHERE %s;", zName, zName, zWhere);
sl@0
   412
    sqlite3DbFree(db, zWhere);
sl@0
   413
  }
sl@0
   414
#endif
sl@0
   415
sl@0
   416
  /* Drop and reload the internal table schema. */
sl@0
   417
  reloadTableSchema(pParse, pTab, zName);
sl@0
   418
sl@0
   419
exit_rename_table:
sl@0
   420
  sqlite3SrcListDelete(db, pSrc);
sl@0
   421
  sqlite3DbFree(db, zName);
sl@0
   422
}
sl@0
   423
sl@0
   424
sl@0
   425
/*
sl@0
   426
** This function is called after an "ALTER TABLE ... ADD" statement
sl@0
   427
** has been parsed. Argument pColDef contains the text of the new
sl@0
   428
** column definition.
sl@0
   429
**
sl@0
   430
** The Table structure pParse->pNewTable was extended to include
sl@0
   431
** the new column during parsing.
sl@0
   432
*/
sl@0
   433
void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){
sl@0
   434
  Table *pNew;              /* Copy of pParse->pNewTable */
sl@0
   435
  Table *pTab;              /* Table being altered */
sl@0
   436
  int iDb;                  /* Database number */
sl@0
   437
  const char *zDb;          /* Database name */
sl@0
   438
  const char *zTab;         /* Table name */
sl@0
   439
  char *zCol;               /* Null-terminated column definition */
sl@0
   440
  Column *pCol;             /* The new column */
sl@0
   441
  Expr *pDflt;              /* Default value for the new column */
sl@0
   442
  sqlite3 *db;              /* The database connection; */
sl@0
   443
sl@0
   444
  if( pParse->nErr ) return;
sl@0
   445
  pNew = pParse->pNewTable;
sl@0
   446
  assert( pNew );
sl@0
   447
sl@0
   448
  db = pParse->db;
sl@0
   449
  assert( sqlite3BtreeHoldsAllMutexes(db) );
sl@0
   450
  iDb = sqlite3SchemaToIndex(db, pNew->pSchema);
sl@0
   451
  zDb = db->aDb[iDb].zName;
sl@0
   452
  zTab = pNew->zName;
sl@0
   453
  pCol = &pNew->aCol[pNew->nCol-1];
sl@0
   454
  pDflt = pCol->pDflt;
sl@0
   455
  pTab = sqlite3FindTable(db, zTab, zDb);
sl@0
   456
  assert( pTab );
sl@0
   457
sl@0
   458
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   459
  /* Invoke the authorization callback. */
sl@0
   460
  if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){
sl@0
   461
    return;
sl@0
   462
  }
sl@0
   463
#endif
sl@0
   464
sl@0
   465
  /* If the default value for the new column was specified with a 
sl@0
   466
  ** literal NULL, then set pDflt to 0. This simplifies checking
sl@0
   467
  ** for an SQL NULL default below.
sl@0
   468
  */
sl@0
   469
  if( pDflt && pDflt->op==TK_NULL ){
sl@0
   470
    pDflt = 0;
sl@0
   471
  }
sl@0
   472
sl@0
   473
  /* Check that the new column is not specified as PRIMARY KEY or UNIQUE.
sl@0
   474
  ** If there is a NOT NULL constraint, then the default value for the
sl@0
   475
  ** column must not be NULL.
sl@0
   476
  */
sl@0
   477
  if( pCol->isPrimKey ){
sl@0
   478
    sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column");
sl@0
   479
    return;
sl@0
   480
  }
sl@0
   481
  if( pNew->pIndex ){
sl@0
   482
    sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column");
sl@0
   483
    return;
sl@0
   484
  }
sl@0
   485
  if( pCol->notNull && !pDflt ){
sl@0
   486
    sqlite3ErrorMsg(pParse, 
sl@0
   487
        "Cannot add a NOT NULL column with default value NULL");
sl@0
   488
    return;
sl@0
   489
  }
sl@0
   490
sl@0
   491
  /* Ensure the default expression is something that sqlite3ValueFromExpr()
sl@0
   492
  ** can handle (i.e. not CURRENT_TIME etc.)
sl@0
   493
  */
sl@0
   494
  if( pDflt ){
sl@0
   495
    sqlite3_value *pVal;
sl@0
   496
    if( sqlite3ValueFromExpr(db, pDflt, SQLITE_UTF8, SQLITE_AFF_NONE, &pVal) ){
sl@0
   497
      db->mallocFailed = 1;
sl@0
   498
      return;
sl@0
   499
    }
sl@0
   500
    if( !pVal ){
sl@0
   501
      sqlite3ErrorMsg(pParse, "Cannot add a column with non-constant default");
sl@0
   502
      return;
sl@0
   503
    }
sl@0
   504
    sqlite3ValueFree(pVal);
sl@0
   505
  }
sl@0
   506
sl@0
   507
  /* Modify the CREATE TABLE statement. */
sl@0
   508
  zCol = sqlite3DbStrNDup(db, (char*)pColDef->z, pColDef->n);
sl@0
   509
  if( zCol ){
sl@0
   510
    char *zEnd = &zCol[pColDef->n-1];
sl@0
   511
    while( (zEnd>zCol && *zEnd==';') || isspace(*(unsigned char *)zEnd) ){
sl@0
   512
      *zEnd-- = '\0';
sl@0
   513
    }
sl@0
   514
    sqlite3NestedParse(pParse, 
sl@0
   515
        "UPDATE \"%w\".%s SET "
sl@0
   516
          "sql = substr(sql,1,%d) || ', ' || %Q || substr(sql,%d) "
sl@0
   517
        "WHERE type = 'table' AND name = %Q", 
sl@0
   518
      zDb, SCHEMA_TABLE(iDb), pNew->addColOffset, zCol, pNew->addColOffset+1,
sl@0
   519
      zTab
sl@0
   520
    );
sl@0
   521
    sqlite3DbFree(db, zCol);
sl@0
   522
  }
sl@0
   523
sl@0
   524
  /* If the default value of the new column is NULL, then set the file
sl@0
   525
  ** format to 2. If the default value of the new column is not NULL,
sl@0
   526
  ** the file format becomes 3.
sl@0
   527
  */
sl@0
   528
  sqlite3MinimumFileFormat(pParse, iDb, pDflt ? 3 : 2);
sl@0
   529
sl@0
   530
  /* Reload the schema of the modified table. */
sl@0
   531
  reloadTableSchema(pParse, pTab, pTab->zName);
sl@0
   532
}
sl@0
   533
sl@0
   534
/*
sl@0
   535
** This function is called by the parser after the table-name in
sl@0
   536
** an "ALTER TABLE <table-name> ADD" statement is parsed. Argument 
sl@0
   537
** pSrc is the full-name of the table being altered.
sl@0
   538
**
sl@0
   539
** This routine makes a (partial) copy of the Table structure
sl@0
   540
** for the table being altered and sets Parse.pNewTable to point
sl@0
   541
** to it. Routines called by the parser as the column definition
sl@0
   542
** is parsed (i.e. sqlite3AddColumn()) add the new Column data to 
sl@0
   543
** the copy. The copy of the Table structure is deleted by tokenize.c 
sl@0
   544
** after parsing is finished.
sl@0
   545
**
sl@0
   546
** Routine sqlite3AlterFinishAddColumn() will be called to complete
sl@0
   547
** coding the "ALTER TABLE ... ADD" statement.
sl@0
   548
*/
sl@0
   549
void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){
sl@0
   550
  Table *pNew;
sl@0
   551
  Table *pTab;
sl@0
   552
  Vdbe *v;
sl@0
   553
  int iDb;
sl@0
   554
  int i;
sl@0
   555
  int nAlloc;
sl@0
   556
  sqlite3 *db = pParse->db;
sl@0
   557
sl@0
   558
  /* Look up the table being altered. */
sl@0
   559
  assert( pParse->pNewTable==0 );
sl@0
   560
  assert( sqlite3BtreeHoldsAllMutexes(db) );
sl@0
   561
  if( db->mallocFailed ) goto exit_begin_add_column;
sl@0
   562
  pTab = sqlite3LocateTable(pParse, 0, pSrc->a[0].zName, pSrc->a[0].zDatabase);
sl@0
   563
  if( !pTab ) goto exit_begin_add_column;
sl@0
   564
sl@0
   565
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   566
  if( IsVirtual(pTab) ){
sl@0
   567
    sqlite3ErrorMsg(pParse, "virtual tables may not be altered");
sl@0
   568
    goto exit_begin_add_column;
sl@0
   569
  }
sl@0
   570
#endif
sl@0
   571
sl@0
   572
  /* Make sure this is not an attempt to ALTER a view. */
sl@0
   573
  if( pTab->pSelect ){
sl@0
   574
    sqlite3ErrorMsg(pParse, "Cannot add a column to a view");
sl@0
   575
    goto exit_begin_add_column;
sl@0
   576
  }
sl@0
   577
sl@0
   578
  assert( pTab->addColOffset>0 );
sl@0
   579
  iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
sl@0
   580
sl@0
   581
  /* Put a copy of the Table struct in Parse.pNewTable for the
sl@0
   582
  ** sqlite3AddColumn() function and friends to modify.
sl@0
   583
  */
sl@0
   584
  pNew = (Table*)sqlite3DbMallocZero(db, sizeof(Table));
sl@0
   585
  if( !pNew ) goto exit_begin_add_column;
sl@0
   586
  pParse->pNewTable = pNew;
sl@0
   587
  pNew->nRef = 1;
sl@0
   588
  pNew->db = db;
sl@0
   589
  pNew->nCol = pTab->nCol;
sl@0
   590
  assert( pNew->nCol>0 );
sl@0
   591
  nAlloc = (((pNew->nCol-1)/8)*8)+8;
sl@0
   592
  assert( nAlloc>=pNew->nCol && nAlloc%8==0 && nAlloc-pNew->nCol<8 );
sl@0
   593
  pNew->aCol = (Column*)sqlite3DbMallocZero(db, sizeof(Column)*nAlloc);
sl@0
   594
  pNew->zName = sqlite3DbStrDup(db, pTab->zName);
sl@0
   595
  if( !pNew->aCol || !pNew->zName ){
sl@0
   596
    db->mallocFailed = 1;
sl@0
   597
    goto exit_begin_add_column;
sl@0
   598
  }
sl@0
   599
  memcpy(pNew->aCol, pTab->aCol, sizeof(Column)*pNew->nCol);
sl@0
   600
  for(i=0; i<pNew->nCol; i++){
sl@0
   601
    Column *pCol = &pNew->aCol[i];
sl@0
   602
    pCol->zName = sqlite3DbStrDup(db, pCol->zName);
sl@0
   603
    pCol->zColl = 0;
sl@0
   604
    pCol->zType = 0;
sl@0
   605
    pCol->pDflt = 0;
sl@0
   606
  }
sl@0
   607
  pNew->pSchema = db->aDb[iDb].pSchema;
sl@0
   608
  pNew->addColOffset = pTab->addColOffset;
sl@0
   609
  pNew->nRef = 1;
sl@0
   610
sl@0
   611
  /* Begin a transaction and increment the schema cookie.  */
sl@0
   612
  sqlite3BeginWriteOperation(pParse, 0, iDb);
sl@0
   613
  v = sqlite3GetVdbe(pParse);
sl@0
   614
  if( !v ) goto exit_begin_add_column;
sl@0
   615
  sqlite3ChangeCookie(pParse, iDb);
sl@0
   616
sl@0
   617
exit_begin_add_column:
sl@0
   618
  sqlite3SrcListDelete(db, pSrc);
sl@0
   619
  return;
sl@0
   620
}
sl@0
   621
#endif  /* SQLITE_ALTER_TABLE */