os/persistentdata/persistentstorage/sql/SQLite/insert.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
** 2001 September 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 are called by the parser
sl@0
    13
** to handle INSERT statements in SQLite.
sl@0
    14
**
sl@0
    15
** $Id: insert.c,v 1.248 2008/07/28 19:34:53 drh Exp $
sl@0
    16
*/
sl@0
    17
#include "sqliteInt.h"
sl@0
    18
sl@0
    19
/*
sl@0
    20
** Set P4 of the most recently inserted opcode to a column affinity
sl@0
    21
** string for index pIdx. A column affinity string has one character
sl@0
    22
** for each column in the table, according to the affinity of the column:
sl@0
    23
**
sl@0
    24
**  Character      Column affinity
sl@0
    25
**  ------------------------------
sl@0
    26
**  'a'            TEXT
sl@0
    27
**  'b'            NONE
sl@0
    28
**  'c'            NUMERIC
sl@0
    29
**  'd'            INTEGER
sl@0
    30
**  'e'            REAL
sl@0
    31
**
sl@0
    32
** An extra 'b' is appended to the end of the string to cover the
sl@0
    33
** rowid that appears as the last column in every index.
sl@0
    34
*/
sl@0
    35
void sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){
sl@0
    36
  if( !pIdx->zColAff ){
sl@0
    37
    /* The first time a column affinity string for a particular index is
sl@0
    38
    ** required, it is allocated and populated here. It is then stored as
sl@0
    39
    ** a member of the Index structure for subsequent use.
sl@0
    40
    **
sl@0
    41
    ** The column affinity string will eventually be deleted by
sl@0
    42
    ** sqliteDeleteIndex() when the Index structure itself is cleaned
sl@0
    43
    ** up.
sl@0
    44
    */
sl@0
    45
    int n;
sl@0
    46
    Table *pTab = pIdx->pTable;
sl@0
    47
    sqlite3 *db = sqlite3VdbeDb(v);
sl@0
    48
    pIdx->zColAff = (char *)sqlite3Malloc(pIdx->nColumn+2);
sl@0
    49
    if( !pIdx->zColAff ){
sl@0
    50
      db->mallocFailed = 1;
sl@0
    51
      return;
sl@0
    52
    }
sl@0
    53
    for(n=0; n<pIdx->nColumn; n++){
sl@0
    54
      pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
sl@0
    55
    }
sl@0
    56
    pIdx->zColAff[n++] = SQLITE_AFF_NONE;
sl@0
    57
    pIdx->zColAff[n] = 0;
sl@0
    58
  }
sl@0
    59
 
sl@0
    60
  sqlite3VdbeChangeP4(v, -1, pIdx->zColAff, 0);
sl@0
    61
}
sl@0
    62
sl@0
    63
/*
sl@0
    64
** Set P4 of the most recently inserted opcode to a column affinity
sl@0
    65
** string for table pTab. A column affinity string has one character
sl@0
    66
** for each column indexed by the index, according to the affinity of the
sl@0
    67
** column:
sl@0
    68
**
sl@0
    69
**  Character      Column affinity
sl@0
    70
**  ------------------------------
sl@0
    71
**  'a'            TEXT
sl@0
    72
**  'b'            NONE
sl@0
    73
**  'c'            NUMERIC
sl@0
    74
**  'd'            INTEGER
sl@0
    75
**  'e'            REAL
sl@0
    76
*/
sl@0
    77
void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){
sl@0
    78
  /* The first time a column affinity string for a particular table
sl@0
    79
  ** is required, it is allocated and populated here. It is then 
sl@0
    80
  ** stored as a member of the Table structure for subsequent use.
sl@0
    81
  **
sl@0
    82
  ** The column affinity string will eventually be deleted by
sl@0
    83
  ** sqlite3DeleteTable() when the Table structure itself is cleaned up.
sl@0
    84
  */
sl@0
    85
  if( !pTab->zColAff ){
sl@0
    86
    char *zColAff;
sl@0
    87
    int i;
sl@0
    88
    sqlite3 *db = sqlite3VdbeDb(v);
sl@0
    89
sl@0
    90
    zColAff = (char *)sqlite3Malloc(pTab->nCol+1);
sl@0
    91
    if( !zColAff ){
sl@0
    92
      db->mallocFailed = 1;
sl@0
    93
      return;
sl@0
    94
    }
sl@0
    95
sl@0
    96
    for(i=0; i<pTab->nCol; i++){
sl@0
    97
      zColAff[i] = pTab->aCol[i].affinity;
sl@0
    98
    }
sl@0
    99
    zColAff[pTab->nCol] = '\0';
sl@0
   100
sl@0
   101
    pTab->zColAff = zColAff;
sl@0
   102
  }
sl@0
   103
sl@0
   104
  sqlite3VdbeChangeP4(v, -1, pTab->zColAff, 0);
sl@0
   105
}
sl@0
   106
sl@0
   107
/*
sl@0
   108
** Return non-zero if the table pTab in database iDb or any of its indices
sl@0
   109
** have been opened at any point in the VDBE program beginning at location
sl@0
   110
** iStartAddr throught the end of the program.  This is used to see if 
sl@0
   111
** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can 
sl@0
   112
** run without using temporary table for the results of the SELECT. 
sl@0
   113
*/
sl@0
   114
static int readsTable(Vdbe *v, int iStartAddr, int iDb, Table *pTab){
sl@0
   115
  int i;
sl@0
   116
  int iEnd = sqlite3VdbeCurrentAddr(v);
sl@0
   117
  for(i=iStartAddr; i<iEnd; i++){
sl@0
   118
    VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
sl@0
   119
    assert( pOp!=0 );
sl@0
   120
    if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
sl@0
   121
      Index *pIndex;
sl@0
   122
      int tnum = pOp->p2;
sl@0
   123
      if( tnum==pTab->tnum ){
sl@0
   124
        return 1;
sl@0
   125
      }
sl@0
   126
      for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
sl@0
   127
        if( tnum==pIndex->tnum ){
sl@0
   128
          return 1;
sl@0
   129
        }
sl@0
   130
      }
sl@0
   131
    }
sl@0
   132
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   133
    if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pTab->pVtab ){
sl@0
   134
      assert( pOp->p4.pVtab!=0 );
sl@0
   135
      assert( pOp->p4type==P4_VTAB );
sl@0
   136
      return 1;
sl@0
   137
    }
sl@0
   138
#endif
sl@0
   139
  }
sl@0
   140
  return 0;
sl@0
   141
}
sl@0
   142
sl@0
   143
#ifndef SQLITE_OMIT_AUTOINCREMENT
sl@0
   144
/*
sl@0
   145
** Write out code to initialize the autoincrement logic.  This code
sl@0
   146
** looks up the current autoincrement value in the sqlite_sequence
sl@0
   147
** table and stores that value in a register.  Code generated by
sl@0
   148
** autoIncStep() will keep that register holding the largest
sl@0
   149
** rowid value.  Code generated by autoIncEnd() will write the new
sl@0
   150
** largest value of the counter back into the sqlite_sequence table.
sl@0
   151
**
sl@0
   152
** This routine returns the index of the mem[] cell that contains
sl@0
   153
** the maximum rowid counter.
sl@0
   154
**
sl@0
   155
** Three consecutive registers are allocated by this routine.  The
sl@0
   156
** first two hold the name of the target table and the maximum rowid 
sl@0
   157
** inserted into the target table, respectively.
sl@0
   158
** The third holds the rowid in sqlite_sequence where we will
sl@0
   159
** write back the revised maximum rowid.  This routine returns the
sl@0
   160
** index of the second of these three registers.
sl@0
   161
*/
sl@0
   162
static int autoIncBegin(
sl@0
   163
  Parse *pParse,      /* Parsing context */
sl@0
   164
  int iDb,            /* Index of the database holding pTab */
sl@0
   165
  Table *pTab         /* The table we are writing to */
sl@0
   166
){
sl@0
   167
  int memId = 0;      /* Register holding maximum rowid */
sl@0
   168
  if( pTab->autoInc ){
sl@0
   169
    Vdbe *v = pParse->pVdbe;
sl@0
   170
    Db *pDb = &pParse->db->aDb[iDb];
sl@0
   171
    int iCur = pParse->nTab;
sl@0
   172
    int addr;               /* Address of the top of the loop */
sl@0
   173
    assert( v );
sl@0
   174
    pParse->nMem++;         /* Holds name of table */
sl@0
   175
    memId = ++pParse->nMem;
sl@0
   176
    pParse->nMem++;
sl@0
   177
    sqlite3OpenTable(pParse, iCur, iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
sl@0
   178
    addr = sqlite3VdbeCurrentAddr(v);
sl@0
   179
    sqlite3VdbeAddOp4(v, OP_String8, 0, memId-1, 0, pTab->zName, 0);
sl@0
   180
    sqlite3VdbeAddOp2(v, OP_Rewind, iCur, addr+9);
sl@0
   181
    sqlite3VdbeAddOp3(v, OP_Column, iCur, 0, memId);
sl@0
   182
    sqlite3VdbeAddOp3(v, OP_Ne, memId-1, addr+7, memId);
sl@0
   183
    sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
sl@0
   184
    sqlite3VdbeAddOp2(v, OP_Rowid, iCur, memId+1);
sl@0
   185
    sqlite3VdbeAddOp3(v, OP_Column, iCur, 1, memId);
sl@0
   186
    sqlite3VdbeAddOp2(v, OP_Goto, 0, addr+9);
sl@0
   187
    sqlite3VdbeAddOp2(v, OP_Next, iCur, addr+2);
sl@0
   188
    sqlite3VdbeAddOp2(v, OP_Integer, 0, memId);
sl@0
   189
    sqlite3VdbeAddOp2(v, OP_Close, iCur, 0);
sl@0
   190
  }
sl@0
   191
  return memId;
sl@0
   192
}
sl@0
   193
sl@0
   194
/*
sl@0
   195
** Update the maximum rowid for an autoincrement calculation.
sl@0
   196
**
sl@0
   197
** This routine should be called when the top of the stack holds a
sl@0
   198
** new rowid that is about to be inserted.  If that new rowid is
sl@0
   199
** larger than the maximum rowid in the memId memory cell, then the
sl@0
   200
** memory cell is updated.  The stack is unchanged.
sl@0
   201
*/
sl@0
   202
static void autoIncStep(Parse *pParse, int memId, int regRowid){
sl@0
   203
  if( memId>0 ){
sl@0
   204
    sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
sl@0
   205
  }
sl@0
   206
}
sl@0
   207
sl@0
   208
/*
sl@0
   209
** After doing one or more inserts, the maximum rowid is stored
sl@0
   210
** in reg[memId].  Generate code to write this value back into the
sl@0
   211
** the sqlite_sequence table.
sl@0
   212
*/
sl@0
   213
static void autoIncEnd(
sl@0
   214
  Parse *pParse,     /* The parsing context */
sl@0
   215
  int iDb,           /* Index of the database holding pTab */
sl@0
   216
  Table *pTab,       /* Table we are inserting into */
sl@0
   217
  int memId          /* Memory cell holding the maximum rowid */
sl@0
   218
){
sl@0
   219
  if( pTab->autoInc ){
sl@0
   220
    int iCur = pParse->nTab;
sl@0
   221
    Vdbe *v = pParse->pVdbe;
sl@0
   222
    Db *pDb = &pParse->db->aDb[iDb];
sl@0
   223
    int j1;
sl@0
   224
    int iRec = ++pParse->nMem;    /* Memory cell used for record */
sl@0
   225
sl@0
   226
    assert( v );
sl@0
   227
    sqlite3OpenTable(pParse, iCur, iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
sl@0
   228
    j1 = sqlite3VdbeAddOp1(v, OP_NotNull, memId+1);
sl@0
   229
    sqlite3VdbeAddOp2(v, OP_NewRowid, iCur, memId+1);
sl@0
   230
    sqlite3VdbeJumpHere(v, j1);
sl@0
   231
    sqlite3VdbeAddOp3(v, OP_MakeRecord, memId-1, 2, iRec);
sl@0
   232
    sqlite3VdbeAddOp3(v, OP_Insert, iCur, iRec, memId+1);
sl@0
   233
    sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
sl@0
   234
    sqlite3VdbeAddOp1(v, OP_Close, iCur);
sl@0
   235
  }
sl@0
   236
}
sl@0
   237
#else
sl@0
   238
/*
sl@0
   239
** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
sl@0
   240
** above are all no-ops
sl@0
   241
*/
sl@0
   242
# define autoIncBegin(A,B,C) (0)
sl@0
   243
# define autoIncStep(A,B,C)
sl@0
   244
# define autoIncEnd(A,B,C,D)
sl@0
   245
#endif /* SQLITE_OMIT_AUTOINCREMENT */
sl@0
   246
sl@0
   247
sl@0
   248
/* Forward declaration */
sl@0
   249
static int xferOptimization(
sl@0
   250
  Parse *pParse,        /* Parser context */
sl@0
   251
  Table *pDest,         /* The table we are inserting into */
sl@0
   252
  Select *pSelect,      /* A SELECT statement to use as the data source */
sl@0
   253
  int onError,          /* How to handle constraint errors */
sl@0
   254
  int iDbDest           /* The database of pDest */
sl@0
   255
);
sl@0
   256
sl@0
   257
/*
sl@0
   258
** This routine is call to handle SQL of the following forms:
sl@0
   259
**
sl@0
   260
**    insert into TABLE (IDLIST) values(EXPRLIST)
sl@0
   261
**    insert into TABLE (IDLIST) select
sl@0
   262
**
sl@0
   263
** The IDLIST following the table name is always optional.  If omitted,
sl@0
   264
** then a list of all columns for the table is substituted.  The IDLIST
sl@0
   265
** appears in the pColumn parameter.  pColumn is NULL if IDLIST is omitted.
sl@0
   266
**
sl@0
   267
** The pList parameter holds EXPRLIST in the first form of the INSERT
sl@0
   268
** statement above, and pSelect is NULL.  For the second form, pList is
sl@0
   269
** NULL and pSelect is a pointer to the select statement used to generate
sl@0
   270
** data for the insert.
sl@0
   271
**
sl@0
   272
** The code generated follows one of four templates.  For a simple
sl@0
   273
** select with data coming from a VALUES clause, the code executes
sl@0
   274
** once straight down through.  Pseudo-code follows (we call this
sl@0
   275
** the "1st template"):
sl@0
   276
**
sl@0
   277
**         open write cursor to <table> and its indices
sl@0
   278
**         puts VALUES clause expressions onto the stack
sl@0
   279
**         write the resulting record into <table>
sl@0
   280
**         cleanup
sl@0
   281
**
sl@0
   282
** The three remaining templates assume the statement is of the form
sl@0
   283
**
sl@0
   284
**   INSERT INTO <table> SELECT ...
sl@0
   285
**
sl@0
   286
** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
sl@0
   287
** in other words if the SELECT pulls all columns from a single table
sl@0
   288
** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
sl@0
   289
** if <table2> and <table1> are distinct tables but have identical
sl@0
   290
** schemas, including all the same indices, then a special optimization
sl@0
   291
** is invoked that copies raw records from <table2> over to <table1>.
sl@0
   292
** See the xferOptimization() function for the implementation of this
sl@0
   293
** template.  This is the 2nd template.
sl@0
   294
**
sl@0
   295
**         open a write cursor to <table>
sl@0
   296
**         open read cursor on <table2>
sl@0
   297
**         transfer all records in <table2> over to <table>
sl@0
   298
**         close cursors
sl@0
   299
**         foreach index on <table>
sl@0
   300
**           open a write cursor on the <table> index
sl@0
   301
**           open a read cursor on the corresponding <table2> index
sl@0
   302
**           transfer all records from the read to the write cursors
sl@0
   303
**           close cursors
sl@0
   304
**         end foreach
sl@0
   305
**
sl@0
   306
** The 3rd template is for when the second template does not apply
sl@0
   307
** and the SELECT clause does not read from <table> at any time.
sl@0
   308
** The generated code follows this template:
sl@0
   309
**
sl@0
   310
**         EOF <- 0
sl@0
   311
**         X <- A
sl@0
   312
**         goto B
sl@0
   313
**      A: setup for the SELECT
sl@0
   314
**         loop over the rows in the SELECT
sl@0
   315
**           load values into registers R..R+n
sl@0
   316
**           yield X
sl@0
   317
**         end loop
sl@0
   318
**         cleanup after the SELECT
sl@0
   319
**         EOF <- 1
sl@0
   320
**         yield X
sl@0
   321
**         goto A
sl@0
   322
**      B: open write cursor to <table> and its indices
sl@0
   323
**      C: yield X
sl@0
   324
**         if EOF goto D
sl@0
   325
**         insert the select result into <table> from R..R+n
sl@0
   326
**         goto C
sl@0
   327
**      D: cleanup
sl@0
   328
**
sl@0
   329
** The 4th template is used if the insert statement takes its
sl@0
   330
** values from a SELECT but the data is being inserted into a table
sl@0
   331
** that is also read as part of the SELECT.  In the third form,
sl@0
   332
** we have to use a intermediate table to store the results of
sl@0
   333
** the select.  The template is like this:
sl@0
   334
**
sl@0
   335
**         EOF <- 0
sl@0
   336
**         X <- A
sl@0
   337
**         goto B
sl@0
   338
**      A: setup for the SELECT
sl@0
   339
**         loop over the tables in the SELECT
sl@0
   340
**           load value into register R..R+n
sl@0
   341
**           yield X
sl@0
   342
**         end loop
sl@0
   343
**         cleanup after the SELECT
sl@0
   344
**         EOF <- 1
sl@0
   345
**         yield X
sl@0
   346
**         halt-error
sl@0
   347
**      B: open temp table
sl@0
   348
**      L: yield X
sl@0
   349
**         if EOF goto M
sl@0
   350
**         insert row from R..R+n into temp table
sl@0
   351
**         goto L
sl@0
   352
**      M: open write cursor to <table> and its indices
sl@0
   353
**         rewind temp table
sl@0
   354
**      C: loop over rows of intermediate table
sl@0
   355
**           transfer values form intermediate table into <table>
sl@0
   356
**         end loop
sl@0
   357
**      D: cleanup
sl@0
   358
*/
sl@0
   359
void sqlite3Insert(
sl@0
   360
  Parse *pParse,        /* Parser context */
sl@0
   361
  SrcList *pTabList,    /* Name of table into which we are inserting */
sl@0
   362
  ExprList *pList,      /* List of values to be inserted */
sl@0
   363
  Select *pSelect,      /* A SELECT statement to use as the data source */
sl@0
   364
  IdList *pColumn,      /* Column names corresponding to IDLIST. */
sl@0
   365
  int onError           /* How to handle constraint errors */
sl@0
   366
){
sl@0
   367
  sqlite3 *db;          /* The main database structure */
sl@0
   368
  Table *pTab;          /* The table to insert into.  aka TABLE */
sl@0
   369
  char *zTab;           /* Name of the table into which we are inserting */
sl@0
   370
  const char *zDb;      /* Name of the database holding this table */
sl@0
   371
  int i, j, idx;        /* Loop counters */
sl@0
   372
  Vdbe *v;              /* Generate code into this virtual machine */
sl@0
   373
  Index *pIdx;          /* For looping over indices of the table */
sl@0
   374
  int nColumn;          /* Number of columns in the data */
sl@0
   375
  int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
sl@0
   376
  int baseCur = 0;      /* VDBE Cursor number for pTab */
sl@0
   377
  int keyColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
sl@0
   378
  int endOfLoop;        /* Label for the end of the insertion loop */
sl@0
   379
  int useTempTable = 0; /* Store SELECT results in intermediate table */
sl@0
   380
  int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
sl@0
   381
  int addrInsTop = 0;   /* Jump to label "D" */
sl@0
   382
  int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
sl@0
   383
  int addrSelect = 0;   /* Address of coroutine that implements the SELECT */
sl@0
   384
  SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
sl@0
   385
  int newIdx = -1;      /* Cursor for the NEW pseudo-table */
sl@0
   386
  int iDb;              /* Index of database holding TABLE */
sl@0
   387
  Db *pDb;              /* The database containing table being inserted into */
sl@0
   388
  int appendFlag = 0;   /* True if the insert is likely to be an append */
sl@0
   389
sl@0
   390
  /* Register allocations */
sl@0
   391
  int regFromSelect = 0;/* Base register for data coming from SELECT */
sl@0
   392
  int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
sl@0
   393
  int regRowCount = 0;  /* Memory cell used for the row counter */
sl@0
   394
  int regIns;           /* Block of regs holding rowid+data being inserted */
sl@0
   395
  int regRowid;         /* registers holding insert rowid */
sl@0
   396
  int regData;          /* register holding first column to insert */
sl@0
   397
  int regRecord;        /* Holds the assemblied row record */
sl@0
   398
  int regEof = 0;       /* Register recording end of SELECT data */
sl@0
   399
  int *aRegIdx = 0;     /* One register allocated to each index */
sl@0
   400
sl@0
   401
sl@0
   402
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   403
  int isView;                 /* True if attempting to insert into a view */
sl@0
   404
  int triggers_exist = 0;     /* True if there are FOR EACH ROW triggers */
sl@0
   405
#endif
sl@0
   406
sl@0
   407
  db = pParse->db;
sl@0
   408
  if( pParse->nErr || db->mallocFailed ){
sl@0
   409
    goto insert_cleanup;
sl@0
   410
  }
sl@0
   411
sl@0
   412
  /* Locate the table into which we will be inserting new information.
sl@0
   413
  */
sl@0
   414
  assert( pTabList->nSrc==1 );
sl@0
   415
  zTab = pTabList->a[0].zName;
sl@0
   416
  if( zTab==0 ) goto insert_cleanup;
sl@0
   417
  pTab = sqlite3SrcListLookup(pParse, pTabList);
sl@0
   418
  if( pTab==0 ){
sl@0
   419
    goto insert_cleanup;
sl@0
   420
  }
sl@0
   421
  iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
sl@0
   422
  assert( iDb<db->nDb );
sl@0
   423
  pDb = &db->aDb[iDb];
sl@0
   424
  zDb = pDb->zName;
sl@0
   425
  if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){
sl@0
   426
    goto insert_cleanup;
sl@0
   427
  }
sl@0
   428
sl@0
   429
  /* Figure out if we have any triggers and if the table being
sl@0
   430
  ** inserted into is a view
sl@0
   431
  */
sl@0
   432
#ifndef SQLITE_OMIT_TRIGGER
sl@0
   433
  triggers_exist = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0);
sl@0
   434
  isView = pTab->pSelect!=0;
sl@0
   435
#else
sl@0
   436
# define triggers_exist 0
sl@0
   437
# define isView 0
sl@0
   438
#endif
sl@0
   439
#ifdef SQLITE_OMIT_VIEW
sl@0
   440
# undef isView
sl@0
   441
# define isView 0
sl@0
   442
#endif
sl@0
   443
sl@0
   444
  /* Ensure that:
sl@0
   445
  *  (a) the table is not read-only, 
sl@0
   446
  *  (b) that if it is a view then ON INSERT triggers exist
sl@0
   447
  */
sl@0
   448
  if( sqlite3IsReadOnly(pParse, pTab, triggers_exist) ){
sl@0
   449
    goto insert_cleanup;
sl@0
   450
  }
sl@0
   451
  assert( pTab!=0 );
sl@0
   452
sl@0
   453
  /* If pTab is really a view, make sure it has been initialized.
sl@0
   454
  ** ViewGetColumnNames() is a no-op if pTab is not a view (or virtual 
sl@0
   455
  ** module table).
sl@0
   456
  */
sl@0
   457
  if( sqlite3ViewGetColumnNames(pParse, pTab) ){
sl@0
   458
    goto insert_cleanup;
sl@0
   459
  }
sl@0
   460
sl@0
   461
  /* Allocate a VDBE
sl@0
   462
  */
sl@0
   463
  v = sqlite3GetVdbe(pParse);
sl@0
   464
  if( v==0 ) goto insert_cleanup;
sl@0
   465
  if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
sl@0
   466
  sqlite3BeginWriteOperation(pParse, pSelect || triggers_exist, iDb);
sl@0
   467
sl@0
   468
  /* if there are row triggers, allocate a temp table for new.* references. */
sl@0
   469
  if( triggers_exist ){
sl@0
   470
    newIdx = pParse->nTab++;
sl@0
   471
  }
sl@0
   472
sl@0
   473
#ifndef SQLITE_OMIT_XFER_OPT
sl@0
   474
  /* If the statement is of the form
sl@0
   475
  **
sl@0
   476
  **       INSERT INTO <table1> SELECT * FROM <table2>;
sl@0
   477
  **
sl@0
   478
  ** Then special optimizations can be applied that make the transfer
sl@0
   479
  ** very fast and which reduce fragmentation of indices.
sl@0
   480
  **
sl@0
   481
  ** This is the 2nd template.
sl@0
   482
  */
sl@0
   483
  if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
sl@0
   484
    assert( !triggers_exist );
sl@0
   485
    assert( pList==0 );
sl@0
   486
    goto insert_cleanup;
sl@0
   487
  }
sl@0
   488
#endif /* SQLITE_OMIT_XFER_OPT */
sl@0
   489
sl@0
   490
  /* If this is an AUTOINCREMENT table, look up the sequence number in the
sl@0
   491
  ** sqlite_sequence table and store it in memory cell regAutoinc.
sl@0
   492
  */
sl@0
   493
  regAutoinc = autoIncBegin(pParse, iDb, pTab);
sl@0
   494
sl@0
   495
  /* Figure out how many columns of data are supplied.  If the data
sl@0
   496
  ** is coming from a SELECT statement, then generate a co-routine that
sl@0
   497
  ** produces a single row of the SELECT on each invocation.  The
sl@0
   498
  ** co-routine is the common header to the 3rd and 4th templates.
sl@0
   499
  */
sl@0
   500
  if( pSelect ){
sl@0
   501
    /* Data is coming from a SELECT.  Generate code to implement that SELECT
sl@0
   502
    ** as a co-routine.  The code is common to both the 3rd and 4th
sl@0
   503
    ** templates:
sl@0
   504
    **
sl@0
   505
    **         EOF <- 0
sl@0
   506
    **         X <- A
sl@0
   507
    **         goto B
sl@0
   508
    **      A: setup for the SELECT
sl@0
   509
    **         loop over the tables in the SELECT
sl@0
   510
    **           load value into register R..R+n
sl@0
   511
    **           yield X
sl@0
   512
    **         end loop
sl@0
   513
    **         cleanup after the SELECT
sl@0
   514
    **         EOF <- 1
sl@0
   515
    **         yield X
sl@0
   516
    **         halt-error
sl@0
   517
    **
sl@0
   518
    ** On each invocation of the co-routine, it puts a single row of the
sl@0
   519
    ** SELECT result into registers dest.iMem...dest.iMem+dest.nMem-1.
sl@0
   520
    ** (These output registers are allocated by sqlite3Select().)  When
sl@0
   521
    ** the SELECT completes, it sets the EOF flag stored in regEof.
sl@0
   522
    */
sl@0
   523
    int rc, j1;
sl@0
   524
sl@0
   525
    regEof = ++pParse->nMem;
sl@0
   526
    sqlite3VdbeAddOp2(v, OP_Integer, 0, regEof);      /* EOF <- 0 */
sl@0
   527
    VdbeComment((v, "SELECT eof flag"));
sl@0
   528
    sqlite3SelectDestInit(&dest, SRT_Coroutine, ++pParse->nMem);
sl@0
   529
    addrSelect = sqlite3VdbeCurrentAddr(v)+2;
sl@0
   530
    sqlite3VdbeAddOp2(v, OP_Integer, addrSelect-1, dest.iParm);
sl@0
   531
    j1 = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
sl@0
   532
    VdbeComment((v, "Jump over SELECT coroutine"));
sl@0
   533
sl@0
   534
    /* Resolve the expressions in the SELECT statement and execute it. */
sl@0
   535
    rc = sqlite3Select(pParse, pSelect, &dest, 0, 0, 0);
sl@0
   536
    if( rc || pParse->nErr || db->mallocFailed ){
sl@0
   537
      goto insert_cleanup;
sl@0
   538
    }
sl@0
   539
    sqlite3VdbeAddOp2(v, OP_Integer, 1, regEof);         /* EOF <- 1 */
sl@0
   540
    sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);   /* yield X */
sl@0
   541
    sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_INTERNAL, OE_Abort);
sl@0
   542
    VdbeComment((v, "End of SELECT coroutine"));
sl@0
   543
    sqlite3VdbeJumpHere(v, j1);                          /* label B: */
sl@0
   544
sl@0
   545
    regFromSelect = dest.iMem;
sl@0
   546
    assert( pSelect->pEList );
sl@0
   547
    nColumn = pSelect->pEList->nExpr;
sl@0
   548
    assert( dest.nMem==nColumn );
sl@0
   549
sl@0
   550
    /* Set useTempTable to TRUE if the result of the SELECT statement
sl@0
   551
    ** should be written into a temporary table (template 4).  Set to
sl@0
   552
    ** FALSE if each* row of the SELECT can be written directly into
sl@0
   553
    ** the destination table (template 3).
sl@0
   554
    **
sl@0
   555
    ** A temp table must be used if the table being updated is also one
sl@0
   556
    ** of the tables being read by the SELECT statement.  Also use a 
sl@0
   557
    ** temp table in the case of row triggers.
sl@0
   558
    */
sl@0
   559
    if( triggers_exist || readsTable(v, addrSelect, iDb, pTab) ){
sl@0
   560
      useTempTable = 1;
sl@0
   561
    }
sl@0
   562
sl@0
   563
    if( useTempTable ){
sl@0
   564
      /* Invoke the coroutine to extract information from the SELECT
sl@0
   565
      ** and add it to a transient table srcTab.  The code generated
sl@0
   566
      ** here is from the 4th template:
sl@0
   567
      **
sl@0
   568
      **      B: open temp table
sl@0
   569
      **      L: yield X
sl@0
   570
      **         if EOF goto M
sl@0
   571
      **         insert row from R..R+n into temp table
sl@0
   572
      **         goto L
sl@0
   573
      **      M: ...
sl@0
   574
      */
sl@0
   575
      int regRec;      /* Register to hold packed record */
sl@0
   576
      int regRowid;    /* Register to hold temp table ROWID */
sl@0
   577
      int addrTop;     /* Label "L" */
sl@0
   578
      int addrIf;      /* Address of jump to M */
sl@0
   579
sl@0
   580
      srcTab = pParse->nTab++;
sl@0
   581
      regRec = sqlite3GetTempReg(pParse);
sl@0
   582
      regRowid = sqlite3GetTempReg(pParse);
sl@0
   583
      sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
sl@0
   584
      addrTop = sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);
sl@0
   585
      addrIf = sqlite3VdbeAddOp1(v, OP_If, regEof);
sl@0
   586
      sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
sl@0
   587
      sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regRowid);
sl@0
   588
      sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regRowid);
sl@0
   589
      sqlite3VdbeAddOp2(v, OP_Goto, 0, addrTop);
sl@0
   590
      sqlite3VdbeJumpHere(v, addrIf);
sl@0
   591
      sqlite3ReleaseTempReg(pParse, regRec);
sl@0
   592
      sqlite3ReleaseTempReg(pParse, regRowid);
sl@0
   593
    }
sl@0
   594
  }else{
sl@0
   595
    /* This is the case if the data for the INSERT is coming from a VALUES
sl@0
   596
    ** clause
sl@0
   597
    */
sl@0
   598
    NameContext sNC;
sl@0
   599
    memset(&sNC, 0, sizeof(sNC));
sl@0
   600
    sNC.pParse = pParse;
sl@0
   601
    srcTab = -1;
sl@0
   602
    assert( useTempTable==0 );
sl@0
   603
    nColumn = pList ? pList->nExpr : 0;
sl@0
   604
    for(i=0; i<nColumn; i++){
sl@0
   605
      if( sqlite3ExprResolveNames(&sNC, pList->a[i].pExpr) ){
sl@0
   606
        goto insert_cleanup;
sl@0
   607
      }
sl@0
   608
    }
sl@0
   609
  }
sl@0
   610
sl@0
   611
  /* Make sure the number of columns in the source data matches the number
sl@0
   612
  ** of columns to be inserted into the table.
sl@0
   613
  */
sl@0
   614
  if( IsVirtual(pTab) ){
sl@0
   615
    for(i=0; i<pTab->nCol; i++){
sl@0
   616
      nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0);
sl@0
   617
    }
sl@0
   618
  }
sl@0
   619
  if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
sl@0
   620
    sqlite3ErrorMsg(pParse, 
sl@0
   621
       "table %S has %d columns but %d values were supplied",
sl@0
   622
       pTabList, 0, pTab->nCol, nColumn);
sl@0
   623
    goto insert_cleanup;
sl@0
   624
  }
sl@0
   625
  if( pColumn!=0 && nColumn!=pColumn->nId ){
sl@0
   626
    sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
sl@0
   627
    goto insert_cleanup;
sl@0
   628
  }
sl@0
   629
sl@0
   630
  /* If the INSERT statement included an IDLIST term, then make sure
sl@0
   631
  ** all elements of the IDLIST really are columns of the table and 
sl@0
   632
  ** remember the column indices.
sl@0
   633
  **
sl@0
   634
  ** If the table has an INTEGER PRIMARY KEY column and that column
sl@0
   635
  ** is named in the IDLIST, then record in the keyColumn variable
sl@0
   636
  ** the index into IDLIST of the primary key column.  keyColumn is
sl@0
   637
  ** the index of the primary key as it appears in IDLIST, not as
sl@0
   638
  ** is appears in the original table.  (The index of the primary
sl@0
   639
  ** key in the original table is pTab->iPKey.)
sl@0
   640
  */
sl@0
   641
  if( pColumn ){
sl@0
   642
    for(i=0; i<pColumn->nId; i++){
sl@0
   643
      pColumn->a[i].idx = -1;
sl@0
   644
    }
sl@0
   645
    for(i=0; i<pColumn->nId; i++){
sl@0
   646
      for(j=0; j<pTab->nCol; j++){
sl@0
   647
        if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
sl@0
   648
          pColumn->a[i].idx = j;
sl@0
   649
          if( j==pTab->iPKey ){
sl@0
   650
            keyColumn = i;
sl@0
   651
          }
sl@0
   652
          break;
sl@0
   653
        }
sl@0
   654
      }
sl@0
   655
      if( j>=pTab->nCol ){
sl@0
   656
        if( sqlite3IsRowid(pColumn->a[i].zName) ){
sl@0
   657
          keyColumn = i;
sl@0
   658
        }else{
sl@0
   659
          sqlite3ErrorMsg(pParse, "table %S has no column named %s",
sl@0
   660
              pTabList, 0, pColumn->a[i].zName);
sl@0
   661
          pParse->nErr++;
sl@0
   662
          goto insert_cleanup;
sl@0
   663
        }
sl@0
   664
      }
sl@0
   665
    }
sl@0
   666
  }
sl@0
   667
sl@0
   668
  /* If there is no IDLIST term but the table has an integer primary
sl@0
   669
  ** key, the set the keyColumn variable to the primary key column index
sl@0
   670
  ** in the original table definition.
sl@0
   671
  */
sl@0
   672
  if( pColumn==0 && nColumn>0 ){
sl@0
   673
    keyColumn = pTab->iPKey;
sl@0
   674
  }
sl@0
   675
sl@0
   676
  /* Open the temp table for FOR EACH ROW triggers
sl@0
   677
  */
sl@0
   678
  if( triggers_exist ){
sl@0
   679
    sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, pTab->nCol);
sl@0
   680
    sqlite3VdbeAddOp2(v, OP_OpenPseudo, newIdx, 0);
sl@0
   681
  }
sl@0
   682
    
sl@0
   683
  /* Initialize the count of rows to be inserted
sl@0
   684
  */
sl@0
   685
  if( db->flags & SQLITE_CountRows ){
sl@0
   686
    regRowCount = ++pParse->nMem;
sl@0
   687
    sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
sl@0
   688
  }
sl@0
   689
sl@0
   690
  /* If this is not a view, open the table and and all indices */
sl@0
   691
  if( !isView ){
sl@0
   692
    int nIdx;
sl@0
   693
    int i;
sl@0
   694
sl@0
   695
    baseCur = pParse->nTab;
sl@0
   696
    nIdx = sqlite3OpenTableAndIndices(pParse, pTab, baseCur, OP_OpenWrite);
sl@0
   697
    aRegIdx = sqlite3DbMallocRaw(db, sizeof(int)*(nIdx+1));
sl@0
   698
    if( aRegIdx==0 ){
sl@0
   699
      goto insert_cleanup;
sl@0
   700
    }
sl@0
   701
    for(i=0; i<nIdx; i++){
sl@0
   702
      aRegIdx[i] = ++pParse->nMem;
sl@0
   703
    }
sl@0
   704
  }
sl@0
   705
sl@0
   706
  /* This is the top of the main insertion loop */
sl@0
   707
  if( useTempTable ){
sl@0
   708
    /* This block codes the top of loop only.  The complete loop is the
sl@0
   709
    ** following pseudocode (template 4):
sl@0
   710
    **
sl@0
   711
    **         rewind temp table
sl@0
   712
    **      C: loop over rows of intermediate table
sl@0
   713
    **           transfer values form intermediate table into <table>
sl@0
   714
    **         end loop
sl@0
   715
    **      D: ...
sl@0
   716
    */
sl@0
   717
    addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab);
sl@0
   718
    addrCont = sqlite3VdbeCurrentAddr(v);
sl@0
   719
  }else if( pSelect ){
sl@0
   720
    /* This block codes the top of loop only.  The complete loop is the
sl@0
   721
    ** following pseudocode (template 3):
sl@0
   722
    **
sl@0
   723
    **      C: yield X
sl@0
   724
    **         if EOF goto D
sl@0
   725
    **         insert the select result into <table> from R..R+n
sl@0
   726
    **         goto C
sl@0
   727
    **      D: ...
sl@0
   728
    */
sl@0
   729
    addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);
sl@0
   730
    addrInsTop = sqlite3VdbeAddOp1(v, OP_If, regEof);
sl@0
   731
  }
sl@0
   732
sl@0
   733
  /* Allocate registers for holding the rowid of the new row,
sl@0
   734
  ** the content of the new row, and the assemblied row record.
sl@0
   735
  */
sl@0
   736
  regRecord = ++pParse->nMem;
sl@0
   737
  regRowid = regIns = pParse->nMem+1;
sl@0
   738
  pParse->nMem += pTab->nCol + 1;
sl@0
   739
  if( IsVirtual(pTab) ){
sl@0
   740
    regRowid++;
sl@0
   741
    pParse->nMem++;
sl@0
   742
  }
sl@0
   743
  regData = regRowid+1;
sl@0
   744
sl@0
   745
  /* Run the BEFORE and INSTEAD OF triggers, if there are any
sl@0
   746
  */
sl@0
   747
  endOfLoop = sqlite3VdbeMakeLabel(v);
sl@0
   748
  if( triggers_exist & TRIGGER_BEFORE ){
sl@0
   749
    int regRowid;
sl@0
   750
    int regCols;
sl@0
   751
    int regRec;
sl@0
   752
sl@0
   753
    /* build the NEW.* reference row.  Note that if there is an INTEGER
sl@0
   754
    ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
sl@0
   755
    ** translated into a unique ID for the row.  But on a BEFORE trigger,
sl@0
   756
    ** we do not know what the unique ID will be (because the insert has
sl@0
   757
    ** not happened yet) so we substitute a rowid of -1
sl@0
   758
    */
sl@0
   759
    regRowid = sqlite3GetTempReg(pParse);
sl@0
   760
    if( keyColumn<0 ){
sl@0
   761
      sqlite3VdbeAddOp2(v, OP_Integer, -1, regRowid);
sl@0
   762
    }else if( useTempTable ){
sl@0
   763
      sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regRowid);
sl@0
   764
    }else{
sl@0
   765
      int j1;
sl@0
   766
      assert( pSelect==0 );  /* Otherwise useTempTable is true */
sl@0
   767
      sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr, regRowid);
sl@0
   768
      j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid);
sl@0
   769
      sqlite3VdbeAddOp2(v, OP_Integer, -1, regRowid);
sl@0
   770
      sqlite3VdbeJumpHere(v, j1);
sl@0
   771
      sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid);
sl@0
   772
    }
sl@0
   773
sl@0
   774
    /* Cannot have triggers on a virtual table. If it were possible,
sl@0
   775
    ** this block would have to account for hidden column.
sl@0
   776
    */
sl@0
   777
    assert(!IsVirtual(pTab));
sl@0
   778
sl@0
   779
    /* Create the new column data
sl@0
   780
    */
sl@0
   781
    regCols = sqlite3GetTempRange(pParse, pTab->nCol);
sl@0
   782
    for(i=0; i<pTab->nCol; i++){
sl@0
   783
      if( pColumn==0 ){
sl@0
   784
        j = i;
sl@0
   785
      }else{
sl@0
   786
        for(j=0; j<pColumn->nId; j++){
sl@0
   787
          if( pColumn->a[j].idx==i ) break;
sl@0
   788
        }
sl@0
   789
      }
sl@0
   790
      if( pColumn && j>=pColumn->nId ){
sl@0
   791
        sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i);
sl@0
   792
      }else if( useTempTable ){
sl@0
   793
        sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i); 
sl@0
   794
      }else{
sl@0
   795
        assert( pSelect==0 ); /* Otherwise useTempTable is true */
sl@0
   796
        sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i);
sl@0
   797
      }
sl@0
   798
    }
sl@0
   799
    regRec = sqlite3GetTempReg(pParse);
sl@0
   800
    sqlite3VdbeAddOp3(v, OP_MakeRecord, regCols, pTab->nCol, regRec);
sl@0
   801
sl@0
   802
    /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
sl@0
   803
    ** do not attempt any conversions before assembling the record.
sl@0
   804
    ** If this is a real table, attempt conversions as required by the
sl@0
   805
    ** table column affinities.
sl@0
   806
    */
sl@0
   807
    if( !isView ){
sl@0
   808
      sqlite3TableAffinityStr(v, pTab);
sl@0
   809
    }
sl@0
   810
    sqlite3VdbeAddOp3(v, OP_Insert, newIdx, regRec, regRowid);
sl@0
   811
    sqlite3ReleaseTempReg(pParse, regRec);
sl@0
   812
    sqlite3ReleaseTempReg(pParse, regRowid);
sl@0
   813
    sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol);
sl@0
   814
sl@0
   815
    /* Fire BEFORE or INSTEAD OF triggers */
sl@0
   816
    if( sqlite3CodeRowTrigger(pParse, TK_INSERT, 0, TRIGGER_BEFORE, pTab, 
sl@0
   817
        newIdx, -1, onError, endOfLoop, 0, 0) ){
sl@0
   818
      goto insert_cleanup;
sl@0
   819
    }
sl@0
   820
  }
sl@0
   821
sl@0
   822
  /* Push the record number for the new entry onto the stack.  The
sl@0
   823
  ** record number is a randomly generate integer created by NewRowid
sl@0
   824
  ** except when the table has an INTEGER PRIMARY KEY column, in which
sl@0
   825
  ** case the record number is the same as that column. 
sl@0
   826
  */
sl@0
   827
  if( !isView ){
sl@0
   828
    if( IsVirtual(pTab) ){
sl@0
   829
      /* The row that the VUpdate opcode will delete: none */
sl@0
   830
      sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
sl@0
   831
    }
sl@0
   832
    if( keyColumn>=0 ){
sl@0
   833
      if( useTempTable ){
sl@0
   834
        sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regRowid);
sl@0
   835
      }else if( pSelect ){
sl@0
   836
        sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+keyColumn, regRowid);
sl@0
   837
      }else{
sl@0
   838
        VdbeOp *pOp;
sl@0
   839
        sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr, regRowid);
sl@0
   840
        pOp = sqlite3VdbeGetOp(v, sqlite3VdbeCurrentAddr(v) - 1);
sl@0
   841
        if( pOp && pOp->opcode==OP_Null && !IsVirtual(pTab) ){
sl@0
   842
          appendFlag = 1;
sl@0
   843
          pOp->opcode = OP_NewRowid;
sl@0
   844
          pOp->p1 = baseCur;
sl@0
   845
          pOp->p2 = regRowid;
sl@0
   846
          pOp->p3 = regAutoinc;
sl@0
   847
        }
sl@0
   848
      }
sl@0
   849
      /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
sl@0
   850
      ** to generate a unique primary key value.
sl@0
   851
      */
sl@0
   852
      if( !appendFlag ){
sl@0
   853
        int j1;
sl@0
   854
        if( !IsVirtual(pTab) ){
sl@0
   855
          j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid);
sl@0
   856
          sqlite3VdbeAddOp3(v, OP_NewRowid, baseCur, regRowid, regAutoinc);
sl@0
   857
          sqlite3VdbeJumpHere(v, j1);
sl@0
   858
        }else{
sl@0
   859
          j1 = sqlite3VdbeCurrentAddr(v);
sl@0
   860
          sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, j1+2);
sl@0
   861
        }
sl@0
   862
        sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid);
sl@0
   863
      }
sl@0
   864
    }else if( IsVirtual(pTab) ){
sl@0
   865
      sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
sl@0
   866
    }else{
sl@0
   867
      sqlite3VdbeAddOp3(v, OP_NewRowid, baseCur, regRowid, regAutoinc);
sl@0
   868
      appendFlag = 1;
sl@0
   869
    }
sl@0
   870
    autoIncStep(pParse, regAutoinc, regRowid);
sl@0
   871
sl@0
   872
    /* Push onto the stack, data for all columns of the new entry, beginning
sl@0
   873
    ** with the first column.
sl@0
   874
    */
sl@0
   875
    nHidden = 0;
sl@0
   876
    for(i=0; i<pTab->nCol; i++){
sl@0
   877
      int iRegStore = regRowid+1+i;
sl@0
   878
      if( i==pTab->iPKey ){
sl@0
   879
        /* The value of the INTEGER PRIMARY KEY column is always a NULL.
sl@0
   880
        ** Whenever this column is read, the record number will be substituted
sl@0
   881
        ** in its place.  So will fill this column with a NULL to avoid
sl@0
   882
        ** taking up data space with information that will never be used. */
sl@0
   883
        sqlite3VdbeAddOp2(v, OP_Null, 0, iRegStore);
sl@0
   884
        continue;
sl@0
   885
      }
sl@0
   886
      if( pColumn==0 ){
sl@0
   887
        if( IsHiddenColumn(&pTab->aCol[i]) ){
sl@0
   888
          assert( IsVirtual(pTab) );
sl@0
   889
          j = -1;
sl@0
   890
          nHidden++;
sl@0
   891
        }else{
sl@0
   892
          j = i - nHidden;
sl@0
   893
        }
sl@0
   894
      }else{
sl@0
   895
        for(j=0; j<pColumn->nId; j++){
sl@0
   896
          if( pColumn->a[j].idx==i ) break;
sl@0
   897
        }
sl@0
   898
      }
sl@0
   899
      if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){
sl@0
   900
        sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, iRegStore);
sl@0
   901
      }else if( useTempTable ){
sl@0
   902
        sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore); 
sl@0
   903
      }else if( pSelect ){
sl@0
   904
        sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore);
sl@0
   905
      }else{
sl@0
   906
        sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore);
sl@0
   907
      }
sl@0
   908
    }
sl@0
   909
sl@0
   910
    /* Generate code to check constraints and generate index keys and
sl@0
   911
    ** do the insertion.
sl@0
   912
    */
sl@0
   913
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   914
    if( IsVirtual(pTab) ){
sl@0
   915
      sqlite3VtabMakeWritable(pParse, pTab);
sl@0
   916
      sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns,
sl@0
   917
                     (const char*)pTab->pVtab, P4_VTAB);
sl@0
   918
    }else
sl@0
   919
#endif
sl@0
   920
    {
sl@0
   921
      sqlite3GenerateConstraintChecks(
sl@0
   922
          pParse,
sl@0
   923
          pTab,
sl@0
   924
          baseCur,
sl@0
   925
          regIns,
sl@0
   926
          aRegIdx,
sl@0
   927
          keyColumn>=0,
sl@0
   928
          0,
sl@0
   929
          onError,
sl@0
   930
          endOfLoop
sl@0
   931
      );
sl@0
   932
      sqlite3CompleteInsertion(
sl@0
   933
          pParse,
sl@0
   934
          pTab,
sl@0
   935
          baseCur,
sl@0
   936
          regIns,
sl@0
   937
          aRegIdx,
sl@0
   938
          0,
sl@0
   939
          0,
sl@0
   940
          (triggers_exist & TRIGGER_AFTER)!=0 ? newIdx : -1,
sl@0
   941
          appendFlag
sl@0
   942
       );
sl@0
   943
    }
sl@0
   944
  }
sl@0
   945
sl@0
   946
  /* Update the count of rows that are inserted
sl@0
   947
  */
sl@0
   948
  if( (db->flags & SQLITE_CountRows)!=0 ){
sl@0
   949
    sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
sl@0
   950
  }
sl@0
   951
sl@0
   952
  if( triggers_exist ){
sl@0
   953
    /* Code AFTER triggers */
sl@0
   954
    if( sqlite3CodeRowTrigger(pParse, TK_INSERT, 0, TRIGGER_AFTER, pTab,
sl@0
   955
          newIdx, -1, onError, endOfLoop, 0, 0) ){
sl@0
   956
      goto insert_cleanup;
sl@0
   957
    }
sl@0
   958
  }
sl@0
   959
sl@0
   960
  /* The bottom of the main insertion loop, if the data source
sl@0
   961
  ** is a SELECT statement.
sl@0
   962
  */
sl@0
   963
  sqlite3VdbeResolveLabel(v, endOfLoop);
sl@0
   964
  if( useTempTable ){
sl@0
   965
    sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont);
sl@0
   966
    sqlite3VdbeJumpHere(v, addrInsTop);
sl@0
   967
    sqlite3VdbeAddOp1(v, OP_Close, srcTab);
sl@0
   968
  }else if( pSelect ){
sl@0
   969
    sqlite3VdbeAddOp2(v, OP_Goto, 0, addrCont);
sl@0
   970
    sqlite3VdbeJumpHere(v, addrInsTop);
sl@0
   971
  }
sl@0
   972
sl@0
   973
  if( !IsVirtual(pTab) && !isView ){
sl@0
   974
    /* Close all tables opened */
sl@0
   975
    sqlite3VdbeAddOp1(v, OP_Close, baseCur);
sl@0
   976
    for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){
sl@0
   977
      sqlite3VdbeAddOp1(v, OP_Close, idx+baseCur);
sl@0
   978
    }
sl@0
   979
  }
sl@0
   980
sl@0
   981
  /* Update the sqlite_sequence table by storing the content of the
sl@0
   982
  ** counter value in memory regAutoinc back into the sqlite_sequence
sl@0
   983
  ** table.
sl@0
   984
  */
sl@0
   985
  autoIncEnd(pParse, iDb, pTab, regAutoinc);
sl@0
   986
sl@0
   987
  /*
sl@0
   988
  ** Return the number of rows inserted. If this routine is 
sl@0
   989
  ** generating code because of a call to sqlite3NestedParse(), do not
sl@0
   990
  ** invoke the callback function.
sl@0
   991
  */
sl@0
   992
  if( db->flags & SQLITE_CountRows && pParse->nested==0 && !pParse->trigStack ){
sl@0
   993
    sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
sl@0
   994
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   995
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", P4_STATIC);
sl@0
   996
  }
sl@0
   997
sl@0
   998
insert_cleanup:
sl@0
   999
  sqlite3SrcListDelete(db, pTabList);
sl@0
  1000
  sqlite3ExprListDelete(db, pList);
sl@0
  1001
  sqlite3SelectDelete(db, pSelect);
sl@0
  1002
  sqlite3IdListDelete(db, pColumn);
sl@0
  1003
  sqlite3DbFree(db, aRegIdx);
sl@0
  1004
}
sl@0
  1005
sl@0
  1006
/*
sl@0
  1007
** Generate code to do constraint checks prior to an INSERT or an UPDATE.
sl@0
  1008
**
sl@0
  1009
** The input is a range of consecutive registers as follows:
sl@0
  1010
**
sl@0
  1011
**    1.  The rowid of the row to be updated before the update.  This
sl@0
  1012
**        value is omitted unless we are doing an UPDATE that involves a
sl@0
  1013
**        change to the record number or writing to a virtual table.
sl@0
  1014
**
sl@0
  1015
**    2.  The rowid of the row after the update.
sl@0
  1016
**
sl@0
  1017
**    3.  The data in the first column of the entry after the update.
sl@0
  1018
**
sl@0
  1019
**    i.  Data from middle columns...
sl@0
  1020
**
sl@0
  1021
**    N.  The data in the last column of the entry after the update.
sl@0
  1022
**
sl@0
  1023
** The regRowid parameter is the index of the register containing (2).
sl@0
  1024
**
sl@0
  1025
** The old rowid shown as entry (1) above is omitted unless both isUpdate
sl@0
  1026
** and rowidChng are 1.  isUpdate is true for UPDATEs and false for
sl@0
  1027
** INSERTs.  RowidChng means that the new rowid is explicitly specified by
sl@0
  1028
** the update or insert statement.  If rowidChng is false, it means that
sl@0
  1029
** the rowid is computed automatically in an insert or that the rowid value
sl@0
  1030
** is not modified by the update.
sl@0
  1031
**
sl@0
  1032
** The code generated by this routine store new index entries into
sl@0
  1033
** registers identified by aRegIdx[].  No index entry is created for
sl@0
  1034
** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
sl@0
  1035
** the same as the order of indices on the linked list of indices
sl@0
  1036
** attached to the table.
sl@0
  1037
**
sl@0
  1038
** This routine also generates code to check constraints.  NOT NULL,
sl@0
  1039
** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
sl@0
  1040
** then the appropriate action is performed.  There are five possible
sl@0
  1041
** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
sl@0
  1042
**
sl@0
  1043
**  Constraint type  Action       What Happens
sl@0
  1044
**  ---------------  ----------   ----------------------------------------
sl@0
  1045
**  any              ROLLBACK     The current transaction is rolled back and
sl@0
  1046
**                                sqlite3_exec() returns immediately with a
sl@0
  1047
**                                return code of SQLITE_CONSTRAINT.
sl@0
  1048
**
sl@0
  1049
**  any              ABORT        Back out changes from the current command
sl@0
  1050
**                                only (do not do a complete rollback) then
sl@0
  1051
**                                cause sqlite3_exec() to return immediately
sl@0
  1052
**                                with SQLITE_CONSTRAINT.
sl@0
  1053
**
sl@0
  1054
**  any              FAIL         Sqlite_exec() returns immediately with a
sl@0
  1055
**                                return code of SQLITE_CONSTRAINT.  The
sl@0
  1056
**                                transaction is not rolled back and any
sl@0
  1057
**                                prior changes are retained.
sl@0
  1058
**
sl@0
  1059
**  any              IGNORE       The record number and data is popped from
sl@0
  1060
**                                the stack and there is an immediate jump
sl@0
  1061
**                                to label ignoreDest.
sl@0
  1062
**
sl@0
  1063
**  NOT NULL         REPLACE      The NULL value is replace by the default
sl@0
  1064
**                                value for that column.  If the default value
sl@0
  1065
**                                is NULL, the action is the same as ABORT.
sl@0
  1066
**
sl@0
  1067
**  UNIQUE           REPLACE      The other row that conflicts with the row
sl@0
  1068
**                                being inserted is removed.
sl@0
  1069
**
sl@0
  1070
**  CHECK            REPLACE      Illegal.  The results in an exception.
sl@0
  1071
**
sl@0
  1072
** Which action to take is determined by the overrideError parameter.
sl@0
  1073
** Or if overrideError==OE_Default, then the pParse->onError parameter
sl@0
  1074
** is used.  Or if pParse->onError==OE_Default then the onError value
sl@0
  1075
** for the constraint is used.
sl@0
  1076
**
sl@0
  1077
** The calling routine must open a read/write cursor for pTab with
sl@0
  1078
** cursor number "baseCur".  All indices of pTab must also have open
sl@0
  1079
** read/write cursors with cursor number baseCur+i for the i-th cursor.
sl@0
  1080
** Except, if there is no possibility of a REPLACE action then
sl@0
  1081
** cursors do not need to be open for indices where aRegIdx[i]==0.
sl@0
  1082
*/
sl@0
  1083
void sqlite3GenerateConstraintChecks(
sl@0
  1084
  Parse *pParse,      /* The parser context */
sl@0
  1085
  Table *pTab,        /* the table into which we are inserting */
sl@0
  1086
  int baseCur,        /* Index of a read/write cursor pointing at pTab */
sl@0
  1087
  int regRowid,       /* Index of the range of input registers */
sl@0
  1088
  int *aRegIdx,       /* Register used by each index.  0 for unused indices */
sl@0
  1089
  int rowidChng,      /* True if the rowid might collide with existing entry */
sl@0
  1090
  int isUpdate,       /* True for UPDATE, False for INSERT */
sl@0
  1091
  int overrideError,  /* Override onError to this if not OE_Default */
sl@0
  1092
  int ignoreDest      /* Jump to this label on an OE_Ignore resolution */
sl@0
  1093
){
sl@0
  1094
  int i;
sl@0
  1095
  Vdbe *v;
sl@0
  1096
  int nCol;
sl@0
  1097
  int onError;
sl@0
  1098
  int j1, j3;         /* Addresses of jump instructions */
sl@0
  1099
  int j2 = 0;         /* Initialized to placate warning */
sl@0
  1100
  int regData;        /* Register containing first data column */
sl@0
  1101
  int iCur;
sl@0
  1102
  Index *pIdx;
sl@0
  1103
  int seenReplace = 0;
sl@0
  1104
  int hasTwoRowids = (isUpdate && rowidChng);
sl@0
  1105
sl@0
  1106
  v = sqlite3GetVdbe(pParse);
sl@0
  1107
  assert( v!=0 );
sl@0
  1108
  assert( pTab->pSelect==0 );  /* This table is not a VIEW */
sl@0
  1109
  nCol = pTab->nCol;
sl@0
  1110
  regData = regRowid + 1;
sl@0
  1111
sl@0
  1112
sl@0
  1113
  /* Test all NOT NULL constraints.
sl@0
  1114
  */
sl@0
  1115
  for(i=0; i<nCol; i++){
sl@0
  1116
    if( i==pTab->iPKey ){
sl@0
  1117
      continue;
sl@0
  1118
    }
sl@0
  1119
    onError = pTab->aCol[i].notNull;
sl@0
  1120
    if( onError==OE_None ) continue;
sl@0
  1121
    if( overrideError!=OE_Default ){
sl@0
  1122
      onError = overrideError;
sl@0
  1123
    }else if( onError==OE_Default ){
sl@0
  1124
      onError = OE_Abort;
sl@0
  1125
    }
sl@0
  1126
    if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
sl@0
  1127
      onError = OE_Abort;
sl@0
  1128
    }
sl@0
  1129
    j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regData+i);
sl@0
  1130
    assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
sl@0
  1131
        || onError==OE_Ignore || onError==OE_Replace );
sl@0
  1132
    switch( onError ){
sl@0
  1133
      case OE_Rollback:
sl@0
  1134
      case OE_Abort:
sl@0
  1135
      case OE_Fail: {
sl@0
  1136
        char *zMsg;
sl@0
  1137
        sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_CONSTRAINT, onError);
sl@0
  1138
        zMsg = sqlite3MPrintf(pParse->db, "%s.%s may not be NULL",
sl@0
  1139
                              pTab->zName, pTab->aCol[i].zName);
sl@0
  1140
        sqlite3VdbeChangeP4(v, -1, zMsg, P4_DYNAMIC);
sl@0
  1141
        break;
sl@0
  1142
      }
sl@0
  1143
      case OE_Ignore: {
sl@0
  1144
        sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
sl@0
  1145
        break;
sl@0
  1146
      }
sl@0
  1147
      case OE_Replace: {
sl@0
  1148
        sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regData+i);
sl@0
  1149
        break;
sl@0
  1150
      }
sl@0
  1151
    }
sl@0
  1152
    sqlite3VdbeJumpHere(v, j1);
sl@0
  1153
  }
sl@0
  1154
sl@0
  1155
  /* Test all CHECK constraints
sl@0
  1156
  */
sl@0
  1157
#ifndef SQLITE_OMIT_CHECK
sl@0
  1158
  if( pTab->pCheck && (pParse->db->flags & SQLITE_IgnoreChecks)==0 ){
sl@0
  1159
    int allOk = sqlite3VdbeMakeLabel(v);
sl@0
  1160
    pParse->ckBase = regData;
sl@0
  1161
    sqlite3ExprIfTrue(pParse, pTab->pCheck, allOk, SQLITE_JUMPIFNULL);
sl@0
  1162
    onError = overrideError!=OE_Default ? overrideError : OE_Abort;
sl@0
  1163
    if( onError==OE_Ignore ){
sl@0
  1164
      sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
sl@0
  1165
    }else{
sl@0
  1166
      sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_CONSTRAINT, onError);
sl@0
  1167
    }
sl@0
  1168
    sqlite3VdbeResolveLabel(v, allOk);
sl@0
  1169
  }
sl@0
  1170
#endif /* !defined(SQLITE_OMIT_CHECK) */
sl@0
  1171
sl@0
  1172
  /* If we have an INTEGER PRIMARY KEY, make sure the primary key
sl@0
  1173
  ** of the new record does not previously exist.  Except, if this
sl@0
  1174
  ** is an UPDATE and the primary key is not changing, that is OK.
sl@0
  1175
  */
sl@0
  1176
  if( rowidChng ){
sl@0
  1177
    onError = pTab->keyConf;
sl@0
  1178
    if( overrideError!=OE_Default ){
sl@0
  1179
      onError = overrideError;
sl@0
  1180
    }else if( onError==OE_Default ){
sl@0
  1181
      onError = OE_Abort;
sl@0
  1182
    }
sl@0
  1183
    
sl@0
  1184
    if( onError!=OE_Replace || pTab->pIndex ){
sl@0
  1185
      if( isUpdate ){
sl@0
  1186
        j2 = sqlite3VdbeAddOp3(v, OP_Eq, regRowid, 0, regRowid-1);
sl@0
  1187
      }
sl@0
  1188
      j3 = sqlite3VdbeAddOp3(v, OP_NotExists, baseCur, 0, regRowid);
sl@0
  1189
      switch( onError ){
sl@0
  1190
        default: {
sl@0
  1191
          onError = OE_Abort;
sl@0
  1192
          /* Fall thru into the next case */
sl@0
  1193
        }
sl@0
  1194
        case OE_Rollback:
sl@0
  1195
        case OE_Abort:
sl@0
  1196
        case OE_Fail: {
sl@0
  1197
          sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, onError, 0,
sl@0
  1198
                           "PRIMARY KEY must be unique", P4_STATIC);
sl@0
  1199
          break;
sl@0
  1200
        }
sl@0
  1201
        case OE_Replace: {
sl@0
  1202
          sqlite3GenerateRowIndexDelete(pParse, pTab, baseCur, 0);
sl@0
  1203
          seenReplace = 1;
sl@0
  1204
          break;
sl@0
  1205
        }
sl@0
  1206
        case OE_Ignore: {
sl@0
  1207
          assert( seenReplace==0 );
sl@0
  1208
          sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
sl@0
  1209
          break;
sl@0
  1210
        }
sl@0
  1211
      }
sl@0
  1212
      sqlite3VdbeJumpHere(v, j3);
sl@0
  1213
      if( isUpdate ){
sl@0
  1214
        sqlite3VdbeJumpHere(v, j2);
sl@0
  1215
      }
sl@0
  1216
    }
sl@0
  1217
  }
sl@0
  1218
sl@0
  1219
  /* Test all UNIQUE constraints by creating entries for each UNIQUE
sl@0
  1220
  ** index and making sure that duplicate entries do not already exist.
sl@0
  1221
  ** Add the new records to the indices as we go.
sl@0
  1222
  */
sl@0
  1223
  for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){
sl@0
  1224
    int regIdx;
sl@0
  1225
    int regR;
sl@0
  1226
sl@0
  1227
    if( aRegIdx[iCur]==0 ) continue;  /* Skip unused indices */
sl@0
  1228
sl@0
  1229
    /* Create a key for accessing the index entry */
sl@0
  1230
    regIdx = sqlite3GetTempRange(pParse, pIdx->nColumn+1);
sl@0
  1231
    for(i=0; i<pIdx->nColumn; i++){
sl@0
  1232
      int idx = pIdx->aiColumn[i];
sl@0
  1233
      if( idx==pTab->iPKey ){
sl@0
  1234
        sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
sl@0
  1235
      }else{
sl@0
  1236
        sqlite3VdbeAddOp2(v, OP_SCopy, regData+idx, regIdx+i);
sl@0
  1237
      }
sl@0
  1238
    }
sl@0
  1239
    sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
sl@0
  1240
    sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn+1, aRegIdx[iCur]);
sl@0
  1241
    sqlite3IndexAffinityStr(v, pIdx);
sl@0
  1242
    sqlite3ExprCacheAffinityChange(pParse, regIdx, pIdx->nColumn+1);
sl@0
  1243
    sqlite3ReleaseTempRange(pParse, regIdx, pIdx->nColumn+1);
sl@0
  1244
sl@0
  1245
    /* Find out what action to take in case there is an indexing conflict */
sl@0
  1246
    onError = pIdx->onError;
sl@0
  1247
    if( onError==OE_None ) continue;  /* pIdx is not a UNIQUE index */
sl@0
  1248
    if( overrideError!=OE_Default ){
sl@0
  1249
      onError = overrideError;
sl@0
  1250
    }else if( onError==OE_Default ){
sl@0
  1251
      onError = OE_Abort;
sl@0
  1252
    }
sl@0
  1253
    if( seenReplace ){
sl@0
  1254
      if( onError==OE_Ignore ) onError = OE_Replace;
sl@0
  1255
      else if( onError==OE_Fail ) onError = OE_Abort;
sl@0
  1256
    }
sl@0
  1257
    
sl@0
  1258
sl@0
  1259
    /* Check to see if the new index entry will be unique */
sl@0
  1260
    j2 = sqlite3VdbeAddOp3(v, OP_IsNull, regIdx, 0, pIdx->nColumn);
sl@0
  1261
    regR = sqlite3GetTempReg(pParse);
sl@0
  1262
    sqlite3VdbeAddOp2(v, OP_SCopy, regRowid-hasTwoRowids, regR);
sl@0
  1263
    j3 = sqlite3VdbeAddOp4(v, OP_IsUnique, baseCur+iCur+1, 0,
sl@0
  1264
                           regR, SQLITE_INT_TO_PTR(aRegIdx[iCur]),
sl@0
  1265
                           P4_INT32);
sl@0
  1266
sl@0
  1267
    /* Generate code that executes if the new index entry is not unique */
sl@0
  1268
    assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
sl@0
  1269
        || onError==OE_Ignore || onError==OE_Replace );
sl@0
  1270
    switch( onError ){
sl@0
  1271
      case OE_Rollback:
sl@0
  1272
      case OE_Abort:
sl@0
  1273
      case OE_Fail: {
sl@0
  1274
        int j, n1, n2;
sl@0
  1275
        char zErrMsg[200];
sl@0
  1276
        sqlite3_snprintf(sizeof(zErrMsg), zErrMsg,
sl@0
  1277
                         pIdx->nColumn>1 ? "columns " : "column ");
sl@0
  1278
        n1 = strlen(zErrMsg);
sl@0
  1279
        for(j=0; j<pIdx->nColumn && n1<sizeof(zErrMsg)-30; j++){
sl@0
  1280
          char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName;
sl@0
  1281
          n2 = strlen(zCol);
sl@0
  1282
          if( j>0 ){
sl@0
  1283
            sqlite3_snprintf(sizeof(zErrMsg)-n1, &zErrMsg[n1], ", ");
sl@0
  1284
            n1 += 2;
sl@0
  1285
          }
sl@0
  1286
          if( n1+n2>sizeof(zErrMsg)-30 ){
sl@0
  1287
            sqlite3_snprintf(sizeof(zErrMsg)-n1, &zErrMsg[n1], "...");
sl@0
  1288
            n1 += 3;
sl@0
  1289
            break;
sl@0
  1290
          }else{
sl@0
  1291
            sqlite3_snprintf(sizeof(zErrMsg)-n1, &zErrMsg[n1], "%s", zCol);
sl@0
  1292
            n1 += n2;
sl@0
  1293
          }
sl@0
  1294
        }
sl@0
  1295
        sqlite3_snprintf(sizeof(zErrMsg)-n1, &zErrMsg[n1], 
sl@0
  1296
            pIdx->nColumn>1 ? " are not unique" : " is not unique");
sl@0
  1297
        sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, onError, 0, zErrMsg,0);
sl@0
  1298
        break;
sl@0
  1299
      }
sl@0
  1300
      case OE_Ignore: {
sl@0
  1301
        assert( seenReplace==0 );
sl@0
  1302
        sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
sl@0
  1303
        break;
sl@0
  1304
      }
sl@0
  1305
      case OE_Replace: {
sl@0
  1306
        sqlite3GenerateRowDelete(pParse, pTab, baseCur, regR, 0);
sl@0
  1307
        seenReplace = 1;
sl@0
  1308
        break;
sl@0
  1309
      }
sl@0
  1310
    }
sl@0
  1311
    sqlite3VdbeJumpHere(v, j2);
sl@0
  1312
    sqlite3VdbeJumpHere(v, j3);
sl@0
  1313
    sqlite3ReleaseTempReg(pParse, regR);
sl@0
  1314
  }
sl@0
  1315
}
sl@0
  1316
sl@0
  1317
/*
sl@0
  1318
** This routine generates code to finish the INSERT or UPDATE operation
sl@0
  1319
** that was started by a prior call to sqlite3GenerateConstraintChecks.
sl@0
  1320
** A consecutive range of registers starting at regRowid contains the
sl@0
  1321
** rowid and the content to be inserted.
sl@0
  1322
**
sl@0
  1323
** The arguments to this routine should be the same as the first six
sl@0
  1324
** arguments to sqlite3GenerateConstraintChecks.
sl@0
  1325
*/
sl@0
  1326
void sqlite3CompleteInsertion(
sl@0
  1327
  Parse *pParse,      /* The parser context */
sl@0
  1328
  Table *pTab,        /* the table into which we are inserting */
sl@0
  1329
  int baseCur,        /* Index of a read/write cursor pointing at pTab */
sl@0
  1330
  int regRowid,       /* Range of content */
sl@0
  1331
  int *aRegIdx,       /* Register used by each index.  0 for unused indices */
sl@0
  1332
  int rowidChng,      /* True if the record number will change */
sl@0
  1333
  int isUpdate,       /* True for UPDATE, False for INSERT */
sl@0
  1334
  int newIdx,         /* Index of NEW table for triggers.  -1 if none */
sl@0
  1335
  int appendBias      /* True if this is likely to be an append */
sl@0
  1336
){
sl@0
  1337
  int i;
sl@0
  1338
  Vdbe *v;
sl@0
  1339
  int nIdx;
sl@0
  1340
  Index *pIdx;
sl@0
  1341
  int pik_flags;
sl@0
  1342
  int regData;
sl@0
  1343
  int regRec;
sl@0
  1344
sl@0
  1345
  v = sqlite3GetVdbe(pParse);
sl@0
  1346
  assert( v!=0 );
sl@0
  1347
  assert( pTab->pSelect==0 );  /* This table is not a VIEW */
sl@0
  1348
  for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
sl@0
  1349
  for(i=nIdx-1; i>=0; i--){
sl@0
  1350
    if( aRegIdx[i]==0 ) continue;
sl@0
  1351
    sqlite3VdbeAddOp2(v, OP_IdxInsert, baseCur+i+1, aRegIdx[i]);
sl@0
  1352
  }
sl@0
  1353
  regData = regRowid + 1;
sl@0
  1354
  regRec = sqlite3GetTempReg(pParse);
sl@0
  1355
  sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec);
sl@0
  1356
  sqlite3TableAffinityStr(v, pTab);
sl@0
  1357
  sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol);
sl@0
  1358
#ifndef SQLITE_OMIT_TRIGGER
sl@0
  1359
  if( newIdx>=0 ){
sl@0
  1360
    sqlite3VdbeAddOp3(v, OP_Insert, newIdx, regRec, regRowid);
sl@0
  1361
  }
sl@0
  1362
#endif
sl@0
  1363
  if( pParse->nested ){
sl@0
  1364
    pik_flags = 0;
sl@0
  1365
  }else{
sl@0
  1366
    pik_flags = OPFLAG_NCHANGE;
sl@0
  1367
    pik_flags |= (isUpdate?OPFLAG_ISUPDATE:OPFLAG_LASTROWID);
sl@0
  1368
  }
sl@0
  1369
  if( appendBias ){
sl@0
  1370
    pik_flags |= OPFLAG_APPEND;
sl@0
  1371
  }
sl@0
  1372
  sqlite3VdbeAddOp3(v, OP_Insert, baseCur, regRec, regRowid);
sl@0
  1373
  if( !pParse->nested ){
sl@0
  1374
    sqlite3VdbeChangeP4(v, -1, pTab->zName, P4_STATIC);
sl@0
  1375
  }
sl@0
  1376
  sqlite3VdbeChangeP5(v, pik_flags);
sl@0
  1377
}
sl@0
  1378
sl@0
  1379
/*
sl@0
  1380
** Generate code that will open cursors for a table and for all
sl@0
  1381
** indices of that table.  The "baseCur" parameter is the cursor number used
sl@0
  1382
** for the table.  Indices are opened on subsequent cursors.
sl@0
  1383
**
sl@0
  1384
** Return the number of indices on the table.
sl@0
  1385
*/
sl@0
  1386
int sqlite3OpenTableAndIndices(
sl@0
  1387
  Parse *pParse,   /* Parsing context */
sl@0
  1388
  Table *pTab,     /* Table to be opened */
sl@0
  1389
  int baseCur,        /* Cursor number assigned to the table */
sl@0
  1390
  int op           /* OP_OpenRead or OP_OpenWrite */
sl@0
  1391
){
sl@0
  1392
  int i;
sl@0
  1393
  int iDb;
sl@0
  1394
  Index *pIdx;
sl@0
  1395
  Vdbe *v;
sl@0
  1396
sl@0
  1397
  if( IsVirtual(pTab) ) return 0;
sl@0
  1398
  iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
sl@0
  1399
  v = sqlite3GetVdbe(pParse);
sl@0
  1400
  assert( v!=0 );
sl@0
  1401
  sqlite3OpenTable(pParse, baseCur, iDb, pTab, op);
sl@0
  1402
  for(i=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
sl@0
  1403
    KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx);
sl@0
  1404
    assert( pIdx->pSchema==pTab->pSchema );
sl@0
  1405
    sqlite3VdbeAddOp4(v, op, i+baseCur, pIdx->tnum, iDb,
sl@0
  1406
                      (char*)pKey, P4_KEYINFO_HANDOFF);
sl@0
  1407
    VdbeComment((v, "%s", pIdx->zName));
sl@0
  1408
  }
sl@0
  1409
  if( pParse->nTab<=baseCur+i ){
sl@0
  1410
    pParse->nTab = baseCur+i;
sl@0
  1411
  }
sl@0
  1412
  return i-1;
sl@0
  1413
}
sl@0
  1414
sl@0
  1415
sl@0
  1416
#ifdef SQLITE_TEST
sl@0
  1417
/*
sl@0
  1418
** The following global variable is incremented whenever the
sl@0
  1419
** transfer optimization is used.  This is used for testing
sl@0
  1420
** purposes only - to make sure the transfer optimization really
sl@0
  1421
** is happening when it is suppose to.
sl@0
  1422
*/
sl@0
  1423
int sqlite3_xferopt_count;
sl@0
  1424
#endif /* SQLITE_TEST */
sl@0
  1425
sl@0
  1426
sl@0
  1427
#ifndef SQLITE_OMIT_XFER_OPT
sl@0
  1428
/*
sl@0
  1429
** Check to collation names to see if they are compatible.
sl@0
  1430
*/
sl@0
  1431
static int xferCompatibleCollation(const char *z1, const char *z2){
sl@0
  1432
  if( z1==0 ){
sl@0
  1433
    return z2==0;
sl@0
  1434
  }
sl@0
  1435
  if( z2==0 ){
sl@0
  1436
    return 0;
sl@0
  1437
  }
sl@0
  1438
  return sqlite3StrICmp(z1, z2)==0;
sl@0
  1439
}
sl@0
  1440
sl@0
  1441
sl@0
  1442
/*
sl@0
  1443
** Check to see if index pSrc is compatible as a source of data
sl@0
  1444
** for index pDest in an insert transfer optimization.  The rules
sl@0
  1445
** for a compatible index:
sl@0
  1446
**
sl@0
  1447
**    *   The index is over the same set of columns
sl@0
  1448
**    *   The same DESC and ASC markings occurs on all columns
sl@0
  1449
**    *   The same onError processing (OE_Abort, OE_Ignore, etc)
sl@0
  1450
**    *   The same collating sequence on each column
sl@0
  1451
*/
sl@0
  1452
static int xferCompatibleIndex(Index *pDest, Index *pSrc){
sl@0
  1453
  int i;
sl@0
  1454
  assert( pDest && pSrc );
sl@0
  1455
  assert( pDest->pTable!=pSrc->pTable );
sl@0
  1456
  if( pDest->nColumn!=pSrc->nColumn ){
sl@0
  1457
    return 0;   /* Different number of columns */
sl@0
  1458
  }
sl@0
  1459
  if( pDest->onError!=pSrc->onError ){
sl@0
  1460
    return 0;   /* Different conflict resolution strategies */
sl@0
  1461
  }
sl@0
  1462
  for(i=0; i<pSrc->nColumn; i++){
sl@0
  1463
    if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
sl@0
  1464
      return 0;   /* Different columns indexed */
sl@0
  1465
    }
sl@0
  1466
    if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
sl@0
  1467
      return 0;   /* Different sort orders */
sl@0
  1468
    }
sl@0
  1469
    if( pSrc->azColl[i]!=pDest->azColl[i] ){
sl@0
  1470
      return 0;   /* Different collating sequences */
sl@0
  1471
    }
sl@0
  1472
  }
sl@0
  1473
sl@0
  1474
  /* If no test above fails then the indices must be compatible */
sl@0
  1475
  return 1;
sl@0
  1476
}
sl@0
  1477
sl@0
  1478
/*
sl@0
  1479
** Attempt the transfer optimization on INSERTs of the form
sl@0
  1480
**
sl@0
  1481
**     INSERT INTO tab1 SELECT * FROM tab2;
sl@0
  1482
**
sl@0
  1483
** This optimization is only attempted if
sl@0
  1484
**
sl@0
  1485
**    (1)  tab1 and tab2 have identical schemas including all the
sl@0
  1486
**         same indices and constraints
sl@0
  1487
**
sl@0
  1488
**    (2)  tab1 and tab2 are different tables
sl@0
  1489
**
sl@0
  1490
**    (3)  There must be no triggers on tab1
sl@0
  1491
**
sl@0
  1492
**    (4)  The result set of the SELECT statement is "*"
sl@0
  1493
**
sl@0
  1494
**    (5)  The SELECT statement has no WHERE, HAVING, ORDER BY, GROUP BY,
sl@0
  1495
**         or LIMIT clause.
sl@0
  1496
**
sl@0
  1497
**    (6)  The SELECT statement is a simple (not a compound) select that
sl@0
  1498
**         contains only tab2 in its FROM clause
sl@0
  1499
**
sl@0
  1500
** This method for implementing the INSERT transfers raw records from
sl@0
  1501
** tab2 over to tab1.  The columns are not decoded.  Raw records from
sl@0
  1502
** the indices of tab2 are transfered to tab1 as well.  In so doing,
sl@0
  1503
** the resulting tab1 has much less fragmentation.
sl@0
  1504
**
sl@0
  1505
** This routine returns TRUE if the optimization is attempted.  If any
sl@0
  1506
** of the conditions above fail so that the optimization should not
sl@0
  1507
** be attempted, then this routine returns FALSE.
sl@0
  1508
*/
sl@0
  1509
static int xferOptimization(
sl@0
  1510
  Parse *pParse,        /* Parser context */
sl@0
  1511
  Table *pDest,         /* The table we are inserting into */
sl@0
  1512
  Select *pSelect,      /* A SELECT statement to use as the data source */
sl@0
  1513
  int onError,          /* How to handle constraint errors */
sl@0
  1514
  int iDbDest           /* The database of pDest */
sl@0
  1515
){
sl@0
  1516
  ExprList *pEList;                /* The result set of the SELECT */
sl@0
  1517
  Table *pSrc;                     /* The table in the FROM clause of SELECT */
sl@0
  1518
  Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
sl@0
  1519
  struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
sl@0
  1520
  int i;                           /* Loop counter */
sl@0
  1521
  int iDbSrc;                      /* The database of pSrc */
sl@0
  1522
  int iSrc, iDest;                 /* Cursors from source and destination */
sl@0
  1523
  int addr1, addr2;                /* Loop addresses */
sl@0
  1524
  int emptyDestTest;               /* Address of test for empty pDest */
sl@0
  1525
  int emptySrcTest;                /* Address of test for empty pSrc */
sl@0
  1526
  Vdbe *v;                         /* The VDBE we are building */
sl@0
  1527
  KeyInfo *pKey;                   /* Key information for an index */
sl@0
  1528
  int regAutoinc;                  /* Memory register used by AUTOINC */
sl@0
  1529
  int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
sl@0
  1530
  int regData, regRowid;           /* Registers holding data and rowid */
sl@0
  1531
sl@0
  1532
  if( pSelect==0 ){
sl@0
  1533
    return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
sl@0
  1534
  }
sl@0
  1535
  if( pDest->pTrigger ){
sl@0
  1536
    return 0;   /* tab1 must not have triggers */
sl@0
  1537
  }
sl@0
  1538
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
  1539
  if( pDest->isVirtual ){
sl@0
  1540
    return 0;   /* tab1 must not be a virtual table */
sl@0
  1541
  }
sl@0
  1542
#endif
sl@0
  1543
  if( onError==OE_Default ){
sl@0
  1544
    onError = OE_Abort;
sl@0
  1545
  }
sl@0
  1546
  if( onError!=OE_Abort && onError!=OE_Rollback ){
sl@0
  1547
    return 0;   /* Cannot do OR REPLACE or OR IGNORE or OR FAIL */
sl@0
  1548
  }
sl@0
  1549
  assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
sl@0
  1550
  if( pSelect->pSrc->nSrc!=1 ){
sl@0
  1551
    return 0;   /* FROM clause must have exactly one term */
sl@0
  1552
  }
sl@0
  1553
  if( pSelect->pSrc->a[0].pSelect ){
sl@0
  1554
    return 0;   /* FROM clause cannot contain a subquery */
sl@0
  1555
  }
sl@0
  1556
  if( pSelect->pWhere ){
sl@0
  1557
    return 0;   /* SELECT may not have a WHERE clause */
sl@0
  1558
  }
sl@0
  1559
  if( pSelect->pOrderBy ){
sl@0
  1560
    return 0;   /* SELECT may not have an ORDER BY clause */
sl@0
  1561
  }
sl@0
  1562
  /* Do not need to test for a HAVING clause.  If HAVING is present but
sl@0
  1563
  ** there is no ORDER BY, we will get an error. */
sl@0
  1564
  if( pSelect->pGroupBy ){
sl@0
  1565
    return 0;   /* SELECT may not have a GROUP BY clause */
sl@0
  1566
  }
sl@0
  1567
  if( pSelect->pLimit ){
sl@0
  1568
    return 0;   /* SELECT may not have a LIMIT clause */
sl@0
  1569
  }
sl@0
  1570
  assert( pSelect->pOffset==0 );  /* Must be so if pLimit==0 */
sl@0
  1571
  if( pSelect->pPrior ){
sl@0
  1572
    return 0;   /* SELECT may not be a compound query */
sl@0
  1573
  }
sl@0
  1574
  if( pSelect->isDistinct ){
sl@0
  1575
    return 0;   /* SELECT may not be DISTINCT */
sl@0
  1576
  }
sl@0
  1577
  pEList = pSelect->pEList;
sl@0
  1578
  assert( pEList!=0 );
sl@0
  1579
  if( pEList->nExpr!=1 ){
sl@0
  1580
    return 0;   /* The result set must have exactly one column */
sl@0
  1581
  }
sl@0
  1582
  assert( pEList->a[0].pExpr );
sl@0
  1583
  if( pEList->a[0].pExpr->op!=TK_ALL ){
sl@0
  1584
    return 0;   /* The result set must be the special operator "*" */
sl@0
  1585
  }
sl@0
  1586
sl@0
  1587
  /* At this point we have established that the statement is of the
sl@0
  1588
  ** correct syntactic form to participate in this optimization.  Now
sl@0
  1589
  ** we have to check the semantics.
sl@0
  1590
  */
sl@0
  1591
  pItem = pSelect->pSrc->a;
sl@0
  1592
  pSrc = sqlite3LocateTable(pParse, 0, pItem->zName, pItem->zDatabase);
sl@0
  1593
  if( pSrc==0 ){
sl@0
  1594
    return 0;   /* FROM clause does not contain a real table */
sl@0
  1595
  }
sl@0
  1596
  if( pSrc==pDest ){
sl@0
  1597
    return 0;   /* tab1 and tab2 may not be the same table */
sl@0
  1598
  }
sl@0
  1599
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
  1600
  if( pSrc->isVirtual ){
sl@0
  1601
    return 0;   /* tab2 must not be a virtual table */
sl@0
  1602
  }
sl@0
  1603
#endif
sl@0
  1604
  if( pSrc->pSelect ){
sl@0
  1605
    return 0;   /* tab2 may not be a view */
sl@0
  1606
  }
sl@0
  1607
  if( pDest->nCol!=pSrc->nCol ){
sl@0
  1608
    return 0;   /* Number of columns must be the same in tab1 and tab2 */
sl@0
  1609
  }
sl@0
  1610
  if( pDest->iPKey!=pSrc->iPKey ){
sl@0
  1611
    return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
sl@0
  1612
  }
sl@0
  1613
  for(i=0; i<pDest->nCol; i++){
sl@0
  1614
    if( pDest->aCol[i].affinity!=pSrc->aCol[i].affinity ){
sl@0
  1615
      return 0;    /* Affinity must be the same on all columns */
sl@0
  1616
    }
sl@0
  1617
    if( !xferCompatibleCollation(pDest->aCol[i].zColl, pSrc->aCol[i].zColl) ){
sl@0
  1618
      return 0;    /* Collating sequence must be the same on all columns */
sl@0
  1619
    }
sl@0
  1620
    if( pDest->aCol[i].notNull && !pSrc->aCol[i].notNull ){
sl@0
  1621
      return 0;    /* tab2 must be NOT NULL if tab1 is */
sl@0
  1622
    }
sl@0
  1623
  }
sl@0
  1624
  for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
sl@0
  1625
    if( pDestIdx->onError!=OE_None ){
sl@0
  1626
      destHasUniqueIdx = 1;
sl@0
  1627
    }
sl@0
  1628
    for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
sl@0
  1629
      if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
sl@0
  1630
    }
sl@0
  1631
    if( pSrcIdx==0 ){
sl@0
  1632
      return 0;    /* pDestIdx has no corresponding index in pSrc */
sl@0
  1633
    }
sl@0
  1634
  }
sl@0
  1635
#ifndef SQLITE_OMIT_CHECK
sl@0
  1636
  if( pDest->pCheck && !sqlite3ExprCompare(pSrc->pCheck, pDest->pCheck) ){
sl@0
  1637
    return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
sl@0
  1638
  }
sl@0
  1639
#endif
sl@0
  1640
sl@0
  1641
  /* If we get this far, it means either:
sl@0
  1642
  **
sl@0
  1643
  **    *   We can always do the transfer if the table contains an
sl@0
  1644
  **        an integer primary key
sl@0
  1645
  **
sl@0
  1646
  **    *   We can conditionally do the transfer if the destination
sl@0
  1647
  **        table is empty.
sl@0
  1648
  */
sl@0
  1649
#ifdef SQLITE_TEST
sl@0
  1650
  sqlite3_xferopt_count++;
sl@0
  1651
#endif
sl@0
  1652
  iDbSrc = sqlite3SchemaToIndex(pParse->db, pSrc->pSchema);
sl@0
  1653
  v = sqlite3GetVdbe(pParse);
sl@0
  1654
  sqlite3CodeVerifySchema(pParse, iDbSrc);
sl@0
  1655
  iSrc = pParse->nTab++;
sl@0
  1656
  iDest = pParse->nTab++;
sl@0
  1657
  regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
sl@0
  1658
  sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
sl@0
  1659
  if( (pDest->iPKey<0 && pDest->pIndex!=0) || destHasUniqueIdx ){
sl@0
  1660
    /* If tables do not have an INTEGER PRIMARY KEY and there
sl@0
  1661
    ** are indices to be copied and the destination is not empty,
sl@0
  1662
    ** we have to disallow the transfer optimization because the
sl@0
  1663
    ** the rowids might change which will mess up indexing.
sl@0
  1664
    **
sl@0
  1665
    ** Or if the destination has a UNIQUE index and is not empty,
sl@0
  1666
    ** we also disallow the transfer optimization because we cannot
sl@0
  1667
    ** insure that all entries in the union of DEST and SRC will be
sl@0
  1668
    ** unique.
sl@0
  1669
    */
sl@0
  1670
    addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0);
sl@0
  1671
    emptyDestTest = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
sl@0
  1672
    sqlite3VdbeJumpHere(v, addr1);
sl@0
  1673
  }else{
sl@0
  1674
    emptyDestTest = 0;
sl@0
  1675
  }
sl@0
  1676
  sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
sl@0
  1677
  emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
sl@0
  1678
  regData = sqlite3GetTempReg(pParse);
sl@0
  1679
  regRowid = sqlite3GetTempReg(pParse);
sl@0
  1680
  if( pDest->iPKey>=0 ){
sl@0
  1681
    addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
sl@0
  1682
    addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
sl@0
  1683
    sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, onError, 0,
sl@0
  1684
                      "PRIMARY KEY must be unique", P4_STATIC);
sl@0
  1685
    sqlite3VdbeJumpHere(v, addr2);
sl@0
  1686
    autoIncStep(pParse, regAutoinc, regRowid);
sl@0
  1687
  }else if( pDest->pIndex==0 ){
sl@0
  1688
    addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
sl@0
  1689
  }else{
sl@0
  1690
    addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
sl@0
  1691
    assert( pDest->autoInc==0 );
sl@0
  1692
  }
sl@0
  1693
  sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
sl@0
  1694
  sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid);
sl@0
  1695
  sqlite3VdbeChangeP5(v, OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND);
sl@0
  1696
  sqlite3VdbeChangeP4(v, -1, pDest->zName, 0);
sl@0
  1697
  sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1);
sl@0
  1698
  autoIncEnd(pParse, iDbDest, pDest, regAutoinc);
sl@0
  1699
  for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
sl@0
  1700
    for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
sl@0
  1701
      if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
sl@0
  1702
    }
sl@0
  1703
    assert( pSrcIdx );
sl@0
  1704
    sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
sl@0
  1705
    sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
sl@0
  1706
    pKey = sqlite3IndexKeyinfo(pParse, pSrcIdx);
sl@0
  1707
    sqlite3VdbeAddOp4(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc,
sl@0
  1708
                      (char*)pKey, P4_KEYINFO_HANDOFF);
sl@0
  1709
    VdbeComment((v, "%s", pSrcIdx->zName));
sl@0
  1710
    pKey = sqlite3IndexKeyinfo(pParse, pDestIdx);
sl@0
  1711
    sqlite3VdbeAddOp4(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest,
sl@0
  1712
                      (char*)pKey, P4_KEYINFO_HANDOFF);
sl@0
  1713
    VdbeComment((v, "%s", pDestIdx->zName));
sl@0
  1714
    addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
sl@0
  1715
    sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
sl@0
  1716
    sqlite3VdbeAddOp3(v, OP_IdxInsert, iDest, regData, 1);
sl@0
  1717
    sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1);
sl@0
  1718
    sqlite3VdbeJumpHere(v, addr1);
sl@0
  1719
  }
sl@0
  1720
  sqlite3VdbeJumpHere(v, emptySrcTest);
sl@0
  1721
  sqlite3ReleaseTempReg(pParse, regRowid);
sl@0
  1722
  sqlite3ReleaseTempReg(pParse, regData);
sl@0
  1723
  sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
sl@0
  1724
  sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
sl@0
  1725
  if( emptyDestTest ){
sl@0
  1726
    sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
sl@0
  1727
    sqlite3VdbeJumpHere(v, emptyDestTest);
sl@0
  1728
    sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
sl@0
  1729
    return 0;
sl@0
  1730
  }else{
sl@0
  1731
    return 1;
sl@0
  1732
  }
sl@0
  1733
}
sl@0
  1734
#endif /* SQLITE_OMIT_XFER_OPT */
sl@0
  1735
sl@0
  1736
/* Make sure "isView" gets undefined in case this file becomes part of
sl@0
  1737
** the amalgamation - so that subsequent files do not see isView as a
sl@0
  1738
** macro. */
sl@0
  1739
#undef isView