drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 1 | /* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 2 | ** 2001 September 15 |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 3 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 6 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 7 | ** May you do good and not evil. |
| 8 | ** May you find forgiveness for yourself and forgive others. |
| 9 | ** May you share freely, never taking more than you give. |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 10 | ** |
| 11 | ************************************************************************* |
| 12 | ** This file contains C code routines that are called by the parser |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 13 | ** to handle INSERT statements in SQLite. |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 14 | */ |
| 15 | #include "sqliteInt.h" |
| 16 | |
| 17 | /* |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 18 | ** Generate code that will |
drh | dd9930e | 2013-10-23 23:37:02 +0000 | [diff] [blame] | 19 | ** |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 20 | ** (1) acquire a lock for table pTab then |
| 21 | ** (2) open pTab as cursor iCur. |
| 22 | ** |
| 23 | ** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index |
| 24 | ** for that table that is actually opened. |
drh | bbb5e4e | 2009-04-30 00:11:09 +0000 | [diff] [blame] | 25 | */ |
| 26 | void sqlite3OpenTable( |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 27 | Parse *pParse, /* Generate code into this VDBE */ |
drh | bbb5e4e | 2009-04-30 00:11:09 +0000 | [diff] [blame] | 28 | int iCur, /* The cursor number of the table */ |
| 29 | int iDb, /* The database index in sqlite3.aDb[] */ |
| 30 | Table *pTab, /* The table to be opened */ |
| 31 | int opcode /* OP_OpenRead or OP_OpenWrite */ |
| 32 | ){ |
| 33 | Vdbe *v; |
drh | 5f53aac | 2012-12-03 19:42:39 +0000 | [diff] [blame] | 34 | assert( !IsVirtual(pTab) ); |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 35 | v = sqlite3GetVdbe(pParse); |
drh | bbb5e4e | 2009-04-30 00:11:09 +0000 | [diff] [blame] | 36 | assert( opcode==OP_OpenWrite || opcode==OP_OpenRead ); |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 37 | sqlite3TableLock(pParse, iDb, pTab->tnum, |
| 38 | (opcode==OP_OpenWrite)?1:0, pTab->zName); |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 39 | if( HasRowid(pTab) ){ |
drh | 261c02d | 2013-10-25 14:46:15 +0000 | [diff] [blame] | 40 | sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nCol); |
drh | dd9930e | 2013-10-23 23:37:02 +0000 | [diff] [blame] | 41 | VdbeComment((v, "%s", pTab->zName)); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 42 | }else{ |
drh | dd9930e | 2013-10-23 23:37:02 +0000 | [diff] [blame] | 43 | Index *pPk = sqlite3PrimaryKeyIndex(pTab); |
| 44 | assert( pPk!=0 ); |
drh | afe028a | 2015-05-22 13:09:50 +0000 | [diff] [blame] | 45 | assert( pPk->tnum==pTab->tnum ); |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 46 | sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb); |
| 47 | sqlite3VdbeSetP4KeyInfo(pParse, pPk); |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 48 | VdbeComment((v, "%s", pTab->zName)); |
| 49 | } |
drh | bbb5e4e | 2009-04-30 00:11:09 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | /* |
dan | 69f8bb9 | 2009-08-13 19:21:16 +0000 | [diff] [blame] | 53 | ** Return a pointer to the column affinity string associated with index |
| 54 | ** pIdx. A column affinity string has one character for each column in |
| 55 | ** the table, according to the affinity of the column: |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 56 | ** |
| 57 | ** Character Column affinity |
| 58 | ** ------------------------------ |
drh | 05883a3 | 2015-06-02 15:32:08 +0000 | [diff] [blame] | 59 | ** 'A' BLOB |
drh | 4583c37 | 2014-09-19 20:13:25 +0000 | [diff] [blame] | 60 | ** 'B' TEXT |
| 61 | ** 'C' NUMERIC |
| 62 | ** 'D' INTEGER |
| 63 | ** 'F' REAL |
drh | 2d401ab | 2008-01-10 23:50:11 +0000 | [diff] [blame] | 64 | ** |
drh | 4583c37 | 2014-09-19 20:13:25 +0000 | [diff] [blame] | 65 | ** An extra 'D' is appended to the end of the string to cover the |
drh | 2d401ab | 2008-01-10 23:50:11 +0000 | [diff] [blame] | 66 | ** rowid that appears as the last column in every index. |
dan | 69f8bb9 | 2009-08-13 19:21:16 +0000 | [diff] [blame] | 67 | ** |
| 68 | ** Memory for the buffer containing the column index affinity string |
| 69 | ** is managed along with the rest of the Index structure. It will be |
| 70 | ** released when sqlite3DeleteIndex() is called. |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 71 | */ |
drh | e910769 | 2015-08-25 19:20:04 +0000 | [diff] [blame] | 72 | const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){ |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 73 | if( !pIdx->zColAff ){ |
danielk1977 | e014a83 | 2004-05-17 10:48:57 +0000 | [diff] [blame] | 74 | /* The first time a column affinity string for a particular index is |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 75 | ** required, it is allocated and populated here. It is then stored as |
danielk1977 | e014a83 | 2004-05-17 10:48:57 +0000 | [diff] [blame] | 76 | ** a member of the Index structure for subsequent use. |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 77 | ** |
| 78 | ** The column affinity string will eventually be deleted by |
danielk1977 | e014a83 | 2004-05-17 10:48:57 +0000 | [diff] [blame] | 79 | ** sqliteDeleteIndex() when the Index structure itself is cleaned |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 80 | ** up. |
| 81 | */ |
| 82 | int n; |
| 83 | Table *pTab = pIdx->pTable; |
drh | ad12432 | 2013-10-23 13:30:58 +0000 | [diff] [blame] | 84 | pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1); |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 85 | if( !pIdx->zColAff ){ |
drh | 4a642b6 | 2016-02-05 01:55:27 +0000 | [diff] [blame] | 86 | sqlite3OomFault(db); |
dan | 69f8bb9 | 2009-08-13 19:21:16 +0000 | [diff] [blame] | 87 | return 0; |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 88 | } |
| 89 | for(n=0; n<pIdx->nColumn; n++){ |
drh | ad12432 | 2013-10-23 13:30:58 +0000 | [diff] [blame] | 90 | i16 x = pIdx->aiColumn[n]; |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 91 | if( x>=0 ){ |
| 92 | pIdx->zColAff[n] = pTab->aCol[x].affinity; |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 93 | }else if( x==XN_ROWID ){ |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 94 | pIdx->zColAff[n] = SQLITE_AFF_INTEGER; |
| 95 | }else{ |
drh | 6860e6f | 2015-08-27 18:24:02 +0000 | [diff] [blame] | 96 | char aff; |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 97 | assert( x==XN_EXPR ); |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 98 | assert( pIdx->aColExpr!=0 ); |
drh | 6860e6f | 2015-08-27 18:24:02 +0000 | [diff] [blame] | 99 | aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr); |
| 100 | if( aff==0 ) aff = SQLITE_AFF_BLOB; |
| 101 | pIdx->zColAff[n] = aff; |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 102 | } |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 103 | } |
drh | 2d401ab | 2008-01-10 23:50:11 +0000 | [diff] [blame] | 104 | pIdx->zColAff[n] = 0; |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 105 | } |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 106 | |
dan | 69f8bb9 | 2009-08-13 19:21:16 +0000 | [diff] [blame] | 107 | return pIdx->zColAff; |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | /* |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 111 | ** Compute the affinity string for table pTab, if it has not already been |
drh | 05883a3 | 2015-06-02 15:32:08 +0000 | [diff] [blame] | 112 | ** computed. As an optimization, omit trailing SQLITE_AFF_BLOB affinities. |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 113 | ** |
drh | 05883a3 | 2015-06-02 15:32:08 +0000 | [diff] [blame] | 114 | ** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 115 | ** if iReg>0 then code an OP_Affinity opcode that will set the affinities |
| 116 | ** for register iReg and following. Or if affinities exists and iReg==0, |
| 117 | ** then just set the P4 operand of the previous opcode (which should be |
| 118 | ** an OP_MakeRecord) to the affinity string. |
| 119 | ** |
drh | b6e8fd1 | 2014-03-06 01:56:33 +0000 | [diff] [blame] | 120 | ** A column affinity string has one character per column: |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 121 | ** |
| 122 | ** Character Column affinity |
| 123 | ** ------------------------------ |
drh | 05883a3 | 2015-06-02 15:32:08 +0000 | [diff] [blame] | 124 | ** 'A' BLOB |
drh | 4583c37 | 2014-09-19 20:13:25 +0000 | [diff] [blame] | 125 | ** 'B' TEXT |
| 126 | ** 'C' NUMERIC |
| 127 | ** 'D' INTEGER |
| 128 | ** 'E' REAL |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 129 | */ |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 130 | void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){ |
| 131 | int i; |
| 132 | char *zColAff = pTab->zColAff; |
| 133 | if( zColAff==0 ){ |
drh | abb6fca | 2007-08-16 12:24:01 +0000 | [diff] [blame] | 134 | sqlite3 *db = sqlite3VdbeDb(v); |
drh | b975598 | 2010-07-24 16:34:37 +0000 | [diff] [blame] | 135 | zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1); |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 136 | if( !zColAff ){ |
drh | 4a642b6 | 2016-02-05 01:55:27 +0000 | [diff] [blame] | 137 | sqlite3OomFault(db); |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 138 | return; |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | for(i=0; i<pTab->nCol; i++){ |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 142 | zColAff[i] = pTab->aCol[i].affinity; |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 143 | } |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 144 | do{ |
| 145 | zColAff[i--] = 0; |
drh | 05883a3 | 2015-06-02 15:32:08 +0000 | [diff] [blame] | 146 | }while( i>=0 && zColAff[i]==SQLITE_AFF_BLOB ); |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 147 | pTab->zColAff = zColAff; |
| 148 | } |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 149 | i = sqlite3Strlen30(zColAff); |
| 150 | if( i ){ |
| 151 | if( iReg ){ |
| 152 | sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i); |
| 153 | }else{ |
| 154 | sqlite3VdbeChangeP4(v, -1, zColAff, i); |
| 155 | } |
| 156 | } |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 157 | } |
| 158 | |
danielk1977 | 4d88778 | 2005-02-08 08:42:27 +0000 | [diff] [blame] | 159 | /* |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 160 | ** Return non-zero if the table pTab in database iDb or any of its indices |
drh | b6e8fd1 | 2014-03-06 01:56:33 +0000 | [diff] [blame] | 161 | ** have been opened at any point in the VDBE program. This is used to see if |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 162 | ** a statement of the form "INSERT INTO <iDb, pTab> SELECT ..." can |
drh | b6e8fd1 | 2014-03-06 01:56:33 +0000 | [diff] [blame] | 163 | ** run without using a temporary table for the results of the SELECT. |
danielk1977 | 4d88778 | 2005-02-08 08:42:27 +0000 | [diff] [blame] | 164 | */ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 165 | static int readsTable(Parse *p, int iDb, Table *pTab){ |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 166 | Vdbe *v = sqlite3GetVdbe(p); |
danielk1977 | 4d88778 | 2005-02-08 08:42:27 +0000 | [diff] [blame] | 167 | int i; |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 168 | int iEnd = sqlite3VdbeCurrentAddr(v); |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 169 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
| 170 | VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; |
| 171 | #endif |
| 172 | |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 173 | for(i=1; i<iEnd; i++){ |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 174 | VdbeOp *pOp = sqlite3VdbeGetOp(v, i); |
drh | ef0bea9 | 2007-12-14 16:11:09 +0000 | [diff] [blame] | 175 | assert( pOp!=0 ); |
danielk1977 | 207872a | 2008-01-03 07:54:23 +0000 | [diff] [blame] | 176 | if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){ |
| 177 | Index *pIndex; |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 178 | int tnum = pOp->p2; |
danielk1977 | 207872a | 2008-01-03 07:54:23 +0000 | [diff] [blame] | 179 | if( tnum==pTab->tnum ){ |
| 180 | return 1; |
| 181 | } |
| 182 | for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ |
| 183 | if( tnum==pIndex->tnum ){ |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 184 | return 1; |
| 185 | } |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 186 | } |
| 187 | } |
drh | 543165e | 2007-11-27 14:46:41 +0000 | [diff] [blame] | 188 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 189 | if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){ |
danielk1977 | 2dca4ac | 2008-01-03 11:50:29 +0000 | [diff] [blame] | 190 | assert( pOp->p4.pVtab!=0 ); |
drh | 66a5167 | 2008-01-03 00:01:23 +0000 | [diff] [blame] | 191 | assert( pOp->p4type==P4_VTAB ); |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 192 | return 1; |
danielk1977 | 4d88778 | 2005-02-08 08:42:27 +0000 | [diff] [blame] | 193 | } |
drh | 543165e | 2007-11-27 14:46:41 +0000 | [diff] [blame] | 194 | #endif |
danielk1977 | 4d88778 | 2005-02-08 08:42:27 +0000 | [diff] [blame] | 195 | } |
| 196 | return 0; |
| 197 | } |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 198 | |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 199 | #ifndef SQLITE_OMIT_AUTOINCREMENT |
| 200 | /* |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 201 | ** Locate or create an AutoincInfo structure associated with table pTab |
| 202 | ** which is in database iDb. Return the register number for the register |
drh | 9ef5e77 | 2016-08-19 14:20:56 +0000 | [diff] [blame] | 203 | ** that holds the maximum rowid. Return zero if pTab is not an AUTOINCREMENT |
| 204 | ** table. (Also return zero when doing a VACUUM since we do not want to |
| 205 | ** update the AUTOINCREMENT counters during a VACUUM.) |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 206 | ** |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 207 | ** There is at most one AutoincInfo structure per table even if the |
| 208 | ** same table is autoincremented multiple times due to inserts within |
| 209 | ** triggers. A new AutoincInfo structure is created if this is the |
| 210 | ** first use of table pTab. On 2nd and subsequent uses, the original |
| 211 | ** AutoincInfo structure is used. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 212 | ** |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 213 | ** Three memory locations are allocated: |
| 214 | ** |
| 215 | ** (1) Register to hold the name of the pTab table. |
| 216 | ** (2) Register to hold the maximum ROWID of pTab. |
| 217 | ** (3) Register to hold the rowid in sqlite_sequence of pTab |
| 218 | ** |
| 219 | ** The 2nd register is the one that is returned. That is all the |
| 220 | ** insert routine needs to know about. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 221 | */ |
| 222 | static int autoIncBegin( |
| 223 | Parse *pParse, /* Parsing context */ |
| 224 | int iDb, /* Index of the database holding pTab */ |
| 225 | Table *pTab /* The table we are writing to */ |
| 226 | ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 227 | int memId = 0; /* Register holding maximum rowid */ |
drh | 9ef5e77 | 2016-08-19 14:20:56 +0000 | [diff] [blame] | 228 | if( (pTab->tabFlags & TF_Autoincrement)!=0 |
| 229 | && (pParse->db->flags & SQLITE_Vacuum)==0 |
| 230 | ){ |
dan | 65a7cd1 | 2009-09-01 12:16:01 +0000 | [diff] [blame] | 231 | Parse *pToplevel = sqlite3ParseToplevel(pParse); |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 232 | AutoincInfo *pInfo; |
| 233 | |
dan | 65a7cd1 | 2009-09-01 12:16:01 +0000 | [diff] [blame] | 234 | pInfo = pToplevel->pAinc; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 235 | while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; } |
| 236 | if( pInfo==0 ){ |
drh | 575fad6 | 2016-02-05 13:38:36 +0000 | [diff] [blame] | 237 | pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo)); |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 238 | if( pInfo==0 ) return 0; |
dan | 65a7cd1 | 2009-09-01 12:16:01 +0000 | [diff] [blame] | 239 | pInfo->pNext = pToplevel->pAinc; |
| 240 | pToplevel->pAinc = pInfo; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 241 | pInfo->pTab = pTab; |
| 242 | pInfo->iDb = iDb; |
dan | 65a7cd1 | 2009-09-01 12:16:01 +0000 | [diff] [blame] | 243 | pToplevel->nMem++; /* Register to hold name of table */ |
| 244 | pInfo->regCtr = ++pToplevel->nMem; /* Max rowid register */ |
| 245 | pToplevel->nMem++; /* Rowid in sqlite_sequence */ |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 246 | } |
| 247 | memId = pInfo->regCtr; |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 248 | } |
| 249 | return memId; |
| 250 | } |
| 251 | |
| 252 | /* |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 253 | ** This routine generates code that will initialize all of the |
| 254 | ** register used by the autoincrement tracker. |
| 255 | */ |
| 256 | void sqlite3AutoincrementBegin(Parse *pParse){ |
| 257 | AutoincInfo *p; /* Information about an AUTOINCREMENT */ |
| 258 | sqlite3 *db = pParse->db; /* The database connection */ |
| 259 | Db *pDb; /* Database only autoinc table */ |
| 260 | int memId; /* Register holding max rowid */ |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 261 | Vdbe *v = pParse->pVdbe; /* VDBE under construction */ |
| 262 | |
drh | 345ba7d | 2009-09-08 13:40:16 +0000 | [diff] [blame] | 263 | /* This routine is never called during trigger-generation. It is |
| 264 | ** only called from the top-level */ |
| 265 | assert( pParse->pTriggerTab==0 ); |
drh | c149f18 | 2015-09-29 13:25:15 +0000 | [diff] [blame] | 266 | assert( sqlite3IsToplevel(pParse) ); |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 267 | |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 268 | assert( v ); /* We failed long ago if this is not so */ |
| 269 | for(p = pParse->pAinc; p; p = p->pNext){ |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 270 | static const int iLn = VDBE_OFFSET_LINENO(2); |
| 271 | static const VdbeOpList autoInc[] = { |
| 272 | /* 0 */ {OP_Null, 0, 0, 0}, |
| 273 | /* 1 */ {OP_Rewind, 0, 9, 0}, |
| 274 | /* 2 */ {OP_Column, 0, 0, 0}, |
| 275 | /* 3 */ {OP_Ne, 0, 7, 0}, |
| 276 | /* 4 */ {OP_Rowid, 0, 0, 0}, |
| 277 | /* 5 */ {OP_Column, 0, 1, 0}, |
| 278 | /* 6 */ {OP_Goto, 0, 9, 0}, |
| 279 | /* 7 */ {OP_Next, 0, 2, 0}, |
| 280 | /* 8 */ {OP_Integer, 0, 0, 0}, |
| 281 | /* 9 */ {OP_Close, 0, 0, 0} |
| 282 | }; |
| 283 | VdbeOp *aOp; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 284 | pDb = &db->aDb[p->iDb]; |
| 285 | memId = p->regCtr; |
drh | 2120608 | 2011-04-04 18:22:02 +0000 | [diff] [blame] | 286 | assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 287 | sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead); |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 288 | sqlite3VdbeLoadString(v, memId-1, p->pTab->zName); |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 289 | aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn); |
| 290 | if( aOp==0 ) break; |
| 291 | aOp[0].p2 = memId; |
| 292 | aOp[0].p3 = memId+1; |
| 293 | aOp[2].p3 = memId; |
| 294 | aOp[3].p1 = memId-1; |
| 295 | aOp[3].p3 = memId; |
| 296 | aOp[3].p5 = SQLITE_JUMPIFNULL; |
| 297 | aOp[4].p2 = memId+1; |
| 298 | aOp[5].p3 = memId; |
| 299 | aOp[8].p2 = memId; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | |
| 303 | /* |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 304 | ** Update the maximum rowid for an autoincrement calculation. |
| 305 | ** |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 306 | ** This routine should be called when the regRowid register holds a |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 307 | ** new rowid that is about to be inserted. If that new rowid is |
| 308 | ** larger than the maximum rowid in the memId memory cell, then the |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 309 | ** memory cell is updated. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 310 | */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 311 | static void autoIncStep(Parse *pParse, int memId, int regRowid){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 312 | if( memId>0 ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 313 | sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 314 | } |
| 315 | } |
| 316 | |
| 317 | /* |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 318 | ** This routine generates the code needed to write autoincrement |
| 319 | ** maximum rowid values back into the sqlite_sequence register. |
| 320 | ** Every statement that might do an INSERT into an autoincrement |
| 321 | ** table (either directly or through triggers) needs to call this |
| 322 | ** routine just before the "exit" code. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 323 | */ |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 324 | static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){ |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 325 | AutoincInfo *p; |
| 326 | Vdbe *v = pParse->pVdbe; |
| 327 | sqlite3 *db = pParse->db; |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 328 | |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 329 | assert( v ); |
| 330 | for(p = pParse->pAinc; p; p = p->pNext){ |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 331 | static const int iLn = VDBE_OFFSET_LINENO(2); |
| 332 | static const VdbeOpList autoIncEnd[] = { |
| 333 | /* 0 */ {OP_NotNull, 0, 2, 0}, |
| 334 | /* 1 */ {OP_NewRowid, 0, 0, 0}, |
| 335 | /* 2 */ {OP_MakeRecord, 0, 2, 0}, |
| 336 | /* 3 */ {OP_Insert, 0, 0, 0}, |
| 337 | /* 4 */ {OP_Close, 0, 0, 0} |
| 338 | }; |
| 339 | VdbeOp *aOp; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 340 | Db *pDb = &db->aDb[p->iDb]; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 341 | int iRec; |
| 342 | int memId = p->regCtr; |
| 343 | |
| 344 | iRec = sqlite3GetTempReg(pParse); |
drh | 2120608 | 2011-04-04 18:22:02 +0000 | [diff] [blame] | 345 | assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 346 | sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite); |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 347 | aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn); |
| 348 | if( aOp==0 ) break; |
| 349 | aOp[0].p1 = memId+1; |
| 350 | aOp[1].p2 = memId+1; |
| 351 | aOp[2].p1 = memId-1; |
| 352 | aOp[2].p3 = iRec; |
| 353 | aOp[3].p2 = iRec; |
| 354 | aOp[3].p3 = memId+1; |
| 355 | aOp[3].p5 = OPFLAG_APPEND; |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 356 | sqlite3ReleaseTempReg(pParse, iRec); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 357 | } |
| 358 | } |
drh | 1b32554 | 2016-02-03 01:55:44 +0000 | [diff] [blame] | 359 | void sqlite3AutoincrementEnd(Parse *pParse){ |
| 360 | if( pParse->pAinc ) autoIncrementEnd(pParse); |
| 361 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 362 | #else |
| 363 | /* |
| 364 | ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines |
| 365 | ** above are all no-ops |
| 366 | */ |
| 367 | # define autoIncBegin(A,B,C) (0) |
danielk1977 | 287fb61 | 2008-01-04 19:10:28 +0000 | [diff] [blame] | 368 | # define autoIncStep(A,B,C) |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 369 | #endif /* SQLITE_OMIT_AUTOINCREMENT */ |
| 370 | |
| 371 | |
| 372 | /* Forward declaration */ |
| 373 | static int xferOptimization( |
| 374 | Parse *pParse, /* Parser context */ |
| 375 | Table *pDest, /* The table we are inserting into */ |
| 376 | Select *pSelect, /* A SELECT statement to use as the data source */ |
| 377 | int onError, /* How to handle constraint errors */ |
| 378 | int iDbDest /* The database of pDest */ |
| 379 | ); |
| 380 | |
danielk1977 | 3d1bfea | 2004-05-14 11:00:53 +0000 | [diff] [blame] | 381 | /* |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 382 | ** This routine is called to handle SQL of the following forms: |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 383 | ** |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 384 | ** insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),... |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 385 | ** insert into TABLE (IDLIST) select |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 386 | ** insert into TABLE (IDLIST) default values |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 387 | ** |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 388 | ** The IDLIST following the table name is always optional. If omitted, |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 389 | ** then a list of all (non-hidden) columns for the table is substituted. |
| 390 | ** The IDLIST appears in the pColumn parameter. pColumn is NULL if IDLIST |
| 391 | ** is omitted. |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 392 | ** |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 393 | ** For the pSelect parameter holds the values to be inserted for the |
| 394 | ** first two forms shown above. A VALUES clause is really just short-hand |
| 395 | ** for a SELECT statement that omits the FROM clause and everything else |
| 396 | ** that follows. If the pSelect parameter is NULL, that means that the |
| 397 | ** DEFAULT VALUES form of the INSERT statement is intended. |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 398 | ** |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 399 | ** The code generated follows one of four templates. For a simple |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 400 | ** insert with data coming from a single-row VALUES clause, the code executes |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 401 | ** once straight down through. Pseudo-code follows (we call this |
| 402 | ** the "1st template"): |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 403 | ** |
| 404 | ** open write cursor to <table> and its indices |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 405 | ** put VALUES clause expressions into registers |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 406 | ** write the resulting record into <table> |
| 407 | ** cleanup |
| 408 | ** |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 409 | ** The three remaining templates assume the statement is of the form |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 410 | ** |
| 411 | ** INSERT INTO <table> SELECT ... |
| 412 | ** |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 413 | ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" - |
| 414 | ** in other words if the SELECT pulls all columns from a single table |
| 415 | ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and |
| 416 | ** if <table2> and <table1> are distinct tables but have identical |
| 417 | ** schemas, including all the same indices, then a special optimization |
| 418 | ** is invoked that copies raw records from <table2> over to <table1>. |
| 419 | ** See the xferOptimization() function for the implementation of this |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 420 | ** template. This is the 2nd template. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 421 | ** |
| 422 | ** open a write cursor to <table> |
| 423 | ** open read cursor on <table2> |
| 424 | ** transfer all records in <table2> over to <table> |
| 425 | ** close cursors |
| 426 | ** foreach index on <table> |
| 427 | ** open a write cursor on the <table> index |
| 428 | ** open a read cursor on the corresponding <table2> index |
| 429 | ** transfer all records from the read to the write cursors |
| 430 | ** close cursors |
| 431 | ** end foreach |
| 432 | ** |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 433 | ** The 3rd template is for when the second template does not apply |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 434 | ** and the SELECT clause does not read from <table> at any time. |
| 435 | ** The generated code follows this template: |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 436 | ** |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 437 | ** X <- A |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 438 | ** goto B |
| 439 | ** A: setup for the SELECT |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 440 | ** loop over the rows in the SELECT |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 441 | ** load values into registers R..R+n |
| 442 | ** yield X |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 443 | ** end loop |
| 444 | ** cleanup after the SELECT |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 445 | ** end-coroutine X |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 446 | ** B: open write cursor to <table> and its indices |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 447 | ** C: yield X, at EOF goto D |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 448 | ** insert the select result into <table> from R..R+n |
| 449 | ** goto C |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 450 | ** D: cleanup |
| 451 | ** |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 452 | ** The 4th template is used if the insert statement takes its |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 453 | ** values from a SELECT but the data is being inserted into a table |
| 454 | ** that is also read as part of the SELECT. In the third form, |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 455 | ** we have to use an intermediate table to store the results of |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 456 | ** the select. The template is like this: |
| 457 | ** |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 458 | ** X <- A |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 459 | ** goto B |
| 460 | ** A: setup for the SELECT |
| 461 | ** loop over the tables in the SELECT |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 462 | ** load value into register R..R+n |
| 463 | ** yield X |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 464 | ** end loop |
| 465 | ** cleanup after the SELECT |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 466 | ** end co-routine R |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 467 | ** B: open temp table |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 468 | ** L: yield X, at EOF goto M |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 469 | ** insert row from R..R+n into temp table |
| 470 | ** goto L |
| 471 | ** M: open write cursor to <table> and its indices |
| 472 | ** rewind temp table |
| 473 | ** C: loop over rows of intermediate table |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 474 | ** transfer values form intermediate table into <table> |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 475 | ** end loop |
| 476 | ** D: cleanup |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 477 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 478 | void sqlite3Insert( |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 479 | Parse *pParse, /* Parser context */ |
drh | 113088e | 2003-03-20 01:16:58 +0000 | [diff] [blame] | 480 | SrcList *pTabList, /* Name of table into which we are inserting */ |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 481 | Select *pSelect, /* A SELECT statement to use as the data source */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 482 | IdList *pColumn, /* Column names corresponding to IDLIST. */ |
| 483 | int onError /* How to handle constraint errors */ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 484 | ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 485 | sqlite3 *db; /* The main database structure */ |
| 486 | Table *pTab; /* The table to insert into. aka TABLE */ |
drh | 113088e | 2003-03-20 01:16:58 +0000 | [diff] [blame] | 487 | char *zTab; /* Name of the table into which we are inserting */ |
drh | 60ffc80 | 2016-11-21 21:33:46 +0000 | [diff] [blame] | 488 | int i, j; /* Loop counters */ |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 489 | Vdbe *v; /* Generate code into this virtual machine */ |
| 490 | Index *pIdx; /* For looping over indices of the table */ |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 491 | int nColumn; /* Number of columns in the data */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 492 | int nHidden = 0; /* Number of hidden columns if TABLE is virtual */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 493 | int iDataCur = 0; /* VDBE cursor that is the main data repository */ |
| 494 | int iIdxCur = 0; /* First index cursor */ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 495 | int ipkColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 496 | int endOfLoop; /* Label for the end of the insertion loop */ |
danielk1977 | cfe9a69 | 2004-06-16 12:00:29 +0000 | [diff] [blame] | 497 | int srcTab = 0; /* Data comes from this temporary cursor if >=0 */ |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 498 | int addrInsTop = 0; /* Jump to label "D" */ |
| 499 | int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */ |
drh | 2eb9537 | 2008-06-06 15:04:36 +0000 | [diff] [blame] | 500 | SelectDest dest; /* Destination for SELECT on rhs of INSERT */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 501 | int iDb; /* Index of database holding TABLE */ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 502 | u8 useTempTable = 0; /* Store SELECT results in intermediate table */ |
| 503 | u8 appendFlag = 0; /* True if the insert is likely to be an append */ |
| 504 | u8 withoutRowid; /* 0 for normal table. 1 for WITHOUT ROWID table */ |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 505 | u8 bIdListInOrder; /* True if IDLIST is in table order */ |
drh | 75593d9 | 2014-01-10 20:46:55 +0000 | [diff] [blame] | 506 | ExprList *pList = 0; /* List of VALUES() to be inserted */ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 507 | |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 508 | /* Register allocations */ |
drh | 1bd10f8 | 2008-12-10 21:19:56 +0000 | [diff] [blame] | 509 | int regFromSelect = 0;/* Base register for data coming from SELECT */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 510 | int regAutoinc = 0; /* Register holding the AUTOINCREMENT counter */ |
| 511 | int regRowCount = 0; /* Memory cell used for the row counter */ |
| 512 | int regIns; /* Block of regs holding rowid+data being inserted */ |
| 513 | int regRowid; /* registers holding insert rowid */ |
| 514 | int regData; /* register holding first column to insert */ |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 515 | int *aRegIdx = 0; /* One register allocated to each index */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 516 | |
drh | 798da52 | 2004-11-04 04:42:28 +0000 | [diff] [blame] | 517 | #ifndef SQLITE_OMIT_TRIGGER |
| 518 | int isView; /* True if attempting to insert into a view */ |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 519 | Trigger *pTrigger; /* List of triggers on pTab, if required */ |
| 520 | int tmask; /* Mask of trigger times */ |
drh | 798da52 | 2004-11-04 04:42:28 +0000 | [diff] [blame] | 521 | #endif |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 522 | |
drh | 1743575 | 2007-08-16 04:30:38 +0000 | [diff] [blame] | 523 | db = pParse->db; |
drh | 1bd10f8 | 2008-12-10 21:19:56 +0000 | [diff] [blame] | 524 | memset(&dest, 0, sizeof(dest)); |
drh | 1743575 | 2007-08-16 04:30:38 +0000 | [diff] [blame] | 525 | if( pParse->nErr || db->mallocFailed ){ |
drh | 6f7adc8 | 2006-01-11 21:41:20 +0000 | [diff] [blame] | 526 | goto insert_cleanup; |
| 527 | } |
drh | daffd0e | 2001-04-11 14:28:42 +0000 | [diff] [blame] | 528 | |
drh | 75593d9 | 2014-01-10 20:46:55 +0000 | [diff] [blame] | 529 | /* If the Select object is really just a simple VALUES() list with a |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 530 | ** single row (the common case) then keep that one row of values |
| 531 | ** and discard the other (unused) parts of the pSelect object |
drh | 75593d9 | 2014-01-10 20:46:55 +0000 | [diff] [blame] | 532 | */ |
| 533 | if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){ |
| 534 | pList = pSelect->pEList; |
| 535 | pSelect->pEList = 0; |
| 536 | sqlite3SelectDelete(db, pSelect); |
| 537 | pSelect = 0; |
| 538 | } |
| 539 | |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 540 | /* Locate the table into which we will be inserting new information. |
| 541 | */ |
drh | 113088e | 2003-03-20 01:16:58 +0000 | [diff] [blame] | 542 | assert( pTabList->nSrc==1 ); |
| 543 | zTab = pTabList->a[0].zName; |
drh | 098d168 | 2009-05-02 15:46:46 +0000 | [diff] [blame] | 544 | if( NEVER(zTab==0) ) goto insert_cleanup; |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 545 | pTab = sqlite3SrcListLookup(pParse, pTabList); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 546 | if( pTab==0 ){ |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 547 | goto insert_cleanup; |
| 548 | } |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 549 | iDb = sqlite3SchemaToIndex(db, pTab->pSchema); |
| 550 | assert( iDb<db->nDb ); |
drh | a0daa75 | 2016-09-16 11:53:10 +0000 | [diff] [blame] | 551 | if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, |
| 552 | db->aDb[iDb].zDbSName) ){ |
drh | 1962bda | 2003-01-12 19:33:52 +0000 | [diff] [blame] | 553 | goto insert_cleanup; |
| 554 | } |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 555 | withoutRowid = !HasRowid(pTab); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 556 | |
drh | b7f9164 | 2004-10-31 02:22:47 +0000 | [diff] [blame] | 557 | /* Figure out if we have any triggers and if the table being |
| 558 | ** inserted into is a view |
| 559 | */ |
| 560 | #ifndef SQLITE_OMIT_TRIGGER |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 561 | pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask); |
drh | b7f9164 | 2004-10-31 02:22:47 +0000 | [diff] [blame] | 562 | isView = pTab->pSelect!=0; |
| 563 | #else |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 564 | # define pTrigger 0 |
| 565 | # define tmask 0 |
drh | b7f9164 | 2004-10-31 02:22:47 +0000 | [diff] [blame] | 566 | # define isView 0 |
| 567 | #endif |
| 568 | #ifdef SQLITE_OMIT_VIEW |
| 569 | # undef isView |
| 570 | # define isView 0 |
| 571 | #endif |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 572 | assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) ); |
drh | b7f9164 | 2004-10-31 02:22:47 +0000 | [diff] [blame] | 573 | |
drh | f573c99 | 2002-07-31 00:32:50 +0000 | [diff] [blame] | 574 | /* If pTab is really a view, make sure it has been initialized. |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 575 | ** ViewGetColumnNames() is a no-op if pTab is not a view. |
drh | f573c99 | 2002-07-31 00:32:50 +0000 | [diff] [blame] | 576 | */ |
danielk1977 | b3d24bf | 2006-06-19 03:05:10 +0000 | [diff] [blame] | 577 | if( sqlite3ViewGetColumnNames(pParse, pTab) ){ |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 578 | goto insert_cleanup; |
drh | f573c99 | 2002-07-31 00:32:50 +0000 | [diff] [blame] | 579 | } |
| 580 | |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 581 | /* Cannot insert into a read-only table. |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 582 | */ |
| 583 | if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ |
| 584 | goto insert_cleanup; |
| 585 | } |
| 586 | |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 587 | /* Allocate a VDBE |
| 588 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 589 | v = sqlite3GetVdbe(pParse); |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 590 | if( v==0 ) goto insert_cleanup; |
drh | 4794f73 | 2004-11-05 17:17:50 +0000 | [diff] [blame] | 591 | if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 592 | sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb); |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 593 | |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 594 | #ifndef SQLITE_OMIT_XFER_OPT |
| 595 | /* If the statement is of the form |
| 596 | ** |
| 597 | ** INSERT INTO <table1> SELECT * FROM <table2>; |
| 598 | ** |
| 599 | ** Then special optimizations can be applied that make the transfer |
| 600 | ** very fast and which reduce fragmentation of indices. |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 601 | ** |
| 602 | ** This is the 2nd template. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 603 | */ |
| 604 | if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){ |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 605 | assert( !pTrigger ); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 606 | assert( pList==0 ); |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 607 | goto insert_end; |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 608 | } |
| 609 | #endif /* SQLITE_OMIT_XFER_OPT */ |
| 610 | |
drh | 2958a4e | 2004-11-12 03:56:15 +0000 | [diff] [blame] | 611 | /* If this is an AUTOINCREMENT table, look up the sequence number in the |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 612 | ** sqlite_sequence table and store it in memory cell regAutoinc. |
drh | 2958a4e | 2004-11-12 03:56:15 +0000 | [diff] [blame] | 613 | */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 614 | regAutoinc = autoIncBegin(pParse, iDb, pTab); |
drh | 2958a4e | 2004-11-12 03:56:15 +0000 | [diff] [blame] | 615 | |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 616 | /* Allocate registers for holding the rowid of the new row, |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 617 | ** the content of the new row, and the assembled row record. |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 618 | */ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 619 | regRowid = regIns = pParse->nMem+1; |
| 620 | pParse->nMem += pTab->nCol + 1; |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 621 | if( IsVirtual(pTab) ){ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 622 | regRowid++; |
| 623 | pParse->nMem++; |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 624 | } |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 625 | regData = regRowid+1; |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 626 | |
| 627 | /* If the INSERT statement included an IDLIST term, then make sure |
| 628 | ** all elements of the IDLIST really are columns of the table and |
| 629 | ** remember the column indices. |
drh | c839258 | 2001-12-31 02:48:51 +0000 | [diff] [blame] | 630 | ** |
| 631 | ** If the table has an INTEGER PRIMARY KEY column and that column |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 632 | ** is named in the IDLIST, then record in the ipkColumn variable |
| 633 | ** the index into IDLIST of the primary key column. ipkColumn is |
drh | c839258 | 2001-12-31 02:48:51 +0000 | [diff] [blame] | 634 | ** the index of the primary key as it appears in IDLIST, not as |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 635 | ** is appears in the original table. (The index of the INTEGER |
| 636 | ** PRIMARY KEY in the original table is pTab->iPKey.) |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 637 | */ |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 638 | bIdListInOrder = (pTab->tabFlags & TF_OOOHidden)==0; |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 639 | if( pColumn ){ |
| 640 | for(i=0; i<pColumn->nId; i++){ |
| 641 | pColumn->a[i].idx = -1; |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 642 | } |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 643 | for(i=0; i<pColumn->nId; i++){ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 644 | for(j=0; j<pTab->nCol; j++){ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 645 | if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){ |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 646 | pColumn->a[i].idx = j; |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 647 | if( i!=j ) bIdListInOrder = 0; |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 648 | if( j==pTab->iPKey ){ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 649 | ipkColumn = i; assert( !withoutRowid ); |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 650 | } |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 651 | break; |
| 652 | } |
| 653 | } |
| 654 | if( j>=pTab->nCol ){ |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 655 | if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 656 | ipkColumn = i; |
drh | e48ae71 | 2014-05-23 11:48:57 +0000 | [diff] [blame] | 657 | bIdListInOrder = 0; |
drh | a0217ba | 2003-06-01 01:10:33 +0000 | [diff] [blame] | 658 | }else{ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 659 | sqlite3ErrorMsg(pParse, "table %S has no column named %s", |
drh | a0217ba | 2003-06-01 01:10:33 +0000 | [diff] [blame] | 660 | pTabList, 0, pColumn->a[i].zName); |
dan | 1db9510 | 2010-06-28 10:15:19 +0000 | [diff] [blame] | 661 | pParse->checkSchema = 1; |
drh | a0217ba | 2003-06-01 01:10:33 +0000 | [diff] [blame] | 662 | goto insert_cleanup; |
| 663 | } |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 664 | } |
| 665 | } |
| 666 | } |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 667 | |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 668 | /* Figure out how many columns of data are supplied. If the data |
| 669 | ** is coming from a SELECT statement, then generate a co-routine that |
| 670 | ** produces a single row of the SELECT on each invocation. The |
| 671 | ** co-routine is the common header to the 3rd and 4th templates. |
| 672 | */ |
drh | 5f08526 | 2012-09-15 13:29:23 +0000 | [diff] [blame] | 673 | if( pSelect ){ |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 674 | /* Data is coming from a SELECT or from a multi-row VALUES clause. |
| 675 | ** Generate a co-routine to run the SELECT. */ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 676 | int regYield; /* Register holding co-routine entry-point */ |
| 677 | int addrTop; /* Top of the co-routine */ |
| 678 | int rc; /* Result code */ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 679 | |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 680 | regYield = ++pParse->nMem; |
| 681 | addrTop = sqlite3VdbeCurrentAddr(v) + 1; |
| 682 | sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); |
| 683 | sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); |
| 684 | dest.iSdst = bIdListInOrder ? regData : 0; |
| 685 | dest.nSdst = pTab->nCol; |
| 686 | rc = sqlite3Select(pParse, pSelect, &dest); |
drh | 2b596da | 2012-07-23 21:43:19 +0000 | [diff] [blame] | 687 | regFromSelect = dest.iSdst; |
drh | 992590b | 2015-04-19 22:41:22 +0000 | [diff] [blame] | 688 | if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup; |
drh | 2fade2f | 2016-02-09 02:12:20 +0000 | [diff] [blame] | 689 | sqlite3VdbeEndCoroutine(v, regYield); |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 690 | sqlite3VdbeJumpHere(v, addrTop - 1); /* label B: */ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 691 | assert( pSelect->pEList ); |
| 692 | nColumn = pSelect->pEList->nExpr; |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 693 | |
| 694 | /* Set useTempTable to TRUE if the result of the SELECT statement |
| 695 | ** should be written into a temporary table (template 4). Set to |
| 696 | ** FALSE if each output row of the SELECT can be written directly into |
| 697 | ** the destination table (template 3). |
| 698 | ** |
| 699 | ** A temp table must be used if the table being updated is also one |
| 700 | ** of the tables being read by the SELECT statement. Also use a |
| 701 | ** temp table in the case of row triggers. |
| 702 | */ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 703 | if( pTrigger || readsTable(pParse, iDb, pTab) ){ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 704 | useTempTable = 1; |
| 705 | } |
| 706 | |
| 707 | if( useTempTable ){ |
| 708 | /* Invoke the coroutine to extract information from the SELECT |
| 709 | ** and add it to a transient table srcTab. The code generated |
| 710 | ** here is from the 4th template: |
| 711 | ** |
| 712 | ** B: open temp table |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 713 | ** L: yield X, goto M at EOF |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 714 | ** insert row from R..R+n into temp table |
| 715 | ** goto L |
| 716 | ** M: ... |
| 717 | */ |
| 718 | int regRec; /* Register to hold packed record */ |
| 719 | int regTempRowid; /* Register to hold temp table ROWID */ |
drh | 06280ee | 2014-02-20 19:32:38 +0000 | [diff] [blame] | 720 | int addrL; /* Label "L" */ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 721 | |
| 722 | srcTab = pParse->nTab++; |
| 723 | regRec = sqlite3GetTempReg(pParse); |
| 724 | regTempRowid = sqlite3GetTempReg(pParse); |
| 725 | sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn); |
drh | 06280ee | 2014-02-20 19:32:38 +0000 | [diff] [blame] | 726 | addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 727 | sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec); |
| 728 | sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid); |
| 729 | sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid); |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 730 | sqlite3VdbeGoto(v, addrL); |
drh | 06280ee | 2014-02-20 19:32:38 +0000 | [diff] [blame] | 731 | sqlite3VdbeJumpHere(v, addrL); |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 732 | sqlite3ReleaseTempReg(pParse, regRec); |
| 733 | sqlite3ReleaseTempReg(pParse, regTempRowid); |
| 734 | } |
| 735 | }else{ |
drh | a21f78b | 2015-04-19 18:32:43 +0000 | [diff] [blame] | 736 | /* This is the case if the data for the INSERT is coming from a |
| 737 | ** single-row VALUES clause |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 738 | */ |
| 739 | NameContext sNC; |
| 740 | memset(&sNC, 0, sizeof(sNC)); |
| 741 | sNC.pParse = pParse; |
| 742 | srcTab = -1; |
| 743 | assert( useTempTable==0 ); |
drh | fea870b | 2015-08-24 20:54:06 +0000 | [diff] [blame] | 744 | if( pList ){ |
| 745 | nColumn = pList->nExpr; |
| 746 | if( sqlite3ResolveExprListNames(&sNC, pList) ){ |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 747 | goto insert_cleanup; |
| 748 | } |
drh | fea870b | 2015-08-24 20:54:06 +0000 | [diff] [blame] | 749 | }else{ |
| 750 | nColumn = 0; |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 751 | } |
| 752 | } |
| 753 | |
drh | aacc543 | 2002-01-06 17:07:40 +0000 | [diff] [blame] | 754 | /* If there is no IDLIST term but the table has an integer primary |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 755 | ** key, the set the ipkColumn variable to the integer primary key |
| 756 | ** column index in the original table definition. |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 757 | */ |
drh | 147d0cc | 2006-08-25 23:42:53 +0000 | [diff] [blame] | 758 | if( pColumn==0 && nColumn>0 ){ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 759 | ipkColumn = pTab->iPKey; |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 760 | } |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 761 | |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 762 | /* Make sure the number of columns in the source data matches the number |
| 763 | ** of columns to be inserted into the table. |
| 764 | */ |
drh | f0c9145 | 2015-11-18 18:43:15 +0000 | [diff] [blame] | 765 | for(i=0; i<pTab->nCol; i++){ |
| 766 | nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0); |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 767 | } |
| 768 | if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){ |
| 769 | sqlite3ErrorMsg(pParse, |
| 770 | "table %S has %d columns but %d values were supplied", |
| 771 | pTabList, 0, pTab->nCol-nHidden, nColumn); |
| 772 | goto insert_cleanup; |
| 773 | } |
| 774 | if( pColumn!=0 && nColumn!=pColumn->nId ){ |
| 775 | sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); |
| 776 | goto insert_cleanup; |
| 777 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 778 | |
drh | feeb139 | 2002-04-09 03:28:01 +0000 | [diff] [blame] | 779 | /* Initialize the count of rows to be inserted |
| 780 | */ |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 781 | if( db->flags & SQLITE_CountRows ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 782 | regRowCount = ++pParse->nMem; |
| 783 | sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); |
drh | feeb139 | 2002-04-09 03:28:01 +0000 | [diff] [blame] | 784 | } |
| 785 | |
danielk1977 | e448dc4 | 2008-01-02 11:50:51 +0000 | [diff] [blame] | 786 | /* If this is not a view, open the table and and all indices */ |
| 787 | if( !isView ){ |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 788 | int nIdx; |
dan | fd261ec | 2015-10-22 20:54:33 +0000 | [diff] [blame] | 789 | nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0, |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 790 | &iDataCur, &iIdxCur); |
drh | 575fad6 | 2016-02-05 13:38:36 +0000 | [diff] [blame] | 791 | aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+1)); |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 792 | if( aRegIdx==0 ){ |
| 793 | goto insert_cleanup; |
| 794 | } |
drh | 2c4dfc3 | 2016-11-10 14:24:04 +0000 | [diff] [blame] | 795 | for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){ |
| 796 | assert( pIdx ); |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 797 | aRegIdx[i] = ++pParse->nMem; |
drh | 2c4dfc3 | 2016-11-10 14:24:04 +0000 | [diff] [blame] | 798 | pParse->nMem += pIdx->nColumn; |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 799 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 800 | } |
| 801 | |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 802 | /* This is the top of the main insertion loop */ |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 803 | if( useTempTable ){ |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 804 | /* This block codes the top of loop only. The complete loop is the |
| 805 | ** following pseudocode (template 4): |
| 806 | ** |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 807 | ** rewind temp table, if empty goto D |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 808 | ** C: loop over rows of intermediate table |
| 809 | ** transfer values form intermediate table into <table> |
| 810 | ** end loop |
| 811 | ** D: ... |
| 812 | */ |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 813 | addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v); |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 814 | addrCont = sqlite3VdbeCurrentAddr(v); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 815 | }else if( pSelect ){ |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 816 | /* This block codes the top of loop only. The complete loop is the |
| 817 | ** following pseudocode (template 3): |
| 818 | ** |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 819 | ** C: yield X, at EOF goto D |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 820 | ** insert the select result into <table> from R..R+n |
| 821 | ** goto C |
| 822 | ** D: ... |
| 823 | */ |
drh | 81cf13e | 2014-02-07 18:27:53 +0000 | [diff] [blame] | 824 | addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 825 | VdbeCoverage(v); |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 826 | } |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 827 | |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 828 | /* Run the BEFORE and INSTEAD OF triggers, if there are any |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 829 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 830 | endOfLoop = sqlite3VdbeMakeLabel(v); |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 831 | if( tmask & TRIGGER_BEFORE ){ |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 832 | int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 833 | |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 834 | /* build the NEW.* reference row. Note that if there is an INTEGER |
| 835 | ** PRIMARY KEY into which a NULL is being inserted, that NULL will be |
| 836 | ** translated into a unique ID for the row. But on a BEFORE trigger, |
| 837 | ** we do not know what the unique ID will be (because the insert has |
| 838 | ** not happened yet) so we substitute a rowid of -1 |
| 839 | */ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 840 | if( ipkColumn<0 ){ |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 841 | sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 842 | }else{ |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 843 | int addr1; |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 844 | assert( !withoutRowid ); |
drh | 7fe4590 | 2009-05-01 02:08:04 +0000 | [diff] [blame] | 845 | if( useTempTable ){ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 846 | sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols); |
drh | 7fe4590 | 2009-05-01 02:08:04 +0000 | [diff] [blame] | 847 | }else{ |
| 848 | assert( pSelect==0 ); /* Otherwise useTempTable is true */ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 849 | sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols); |
drh | 7fe4590 | 2009-05-01 02:08:04 +0000 | [diff] [blame] | 850 | } |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 851 | addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v); |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 852 | sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 853 | sqlite3VdbeJumpHere(v, addr1); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 854 | sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v); |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 855 | } |
| 856 | |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 857 | /* Cannot have triggers on a virtual table. If it were possible, |
| 858 | ** this block would have to account for hidden column. |
| 859 | */ |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 860 | assert( !IsVirtual(pTab) ); |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 861 | |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 862 | /* Create the new column data |
| 863 | */ |
drh | b1daa3f | 2015-11-18 21:22:02 +0000 | [diff] [blame] | 864 | for(i=j=0; i<pTab->nCol; i++){ |
| 865 | if( pColumn ){ |
drh | 9adf9ac | 2002-05-15 11:44:13 +0000 | [diff] [blame] | 866 | for(j=0; j<pColumn->nId; j++){ |
| 867 | if( pColumn->a[j].idx==i ) break; |
| 868 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 869 | } |
drh | b1daa3f | 2015-11-18 21:22:02 +0000 | [diff] [blame] | 870 | if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId) |
drh | 03d69a6 | 2015-11-19 13:53:57 +0000 | [diff] [blame] | 871 | || (pColumn==0 && IsOrdinaryHiddenColumn(&pTab->aCol[i])) ){ |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 872 | sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 873 | }else if( useTempTable ){ |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 874 | sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 875 | }else{ |
drh | d6fe961 | 2005-01-14 01:22:00 +0000 | [diff] [blame] | 876 | assert( pSelect==0 ); /* Otherwise useTempTable is true */ |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 877 | sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 878 | } |
drh | 03d69a6 | 2015-11-19 13:53:57 +0000 | [diff] [blame] | 879 | if( pColumn==0 && !IsOrdinaryHiddenColumn(&pTab->aCol[i]) ) j++; |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 880 | } |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 881 | |
| 882 | /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger, |
| 883 | ** do not attempt any conversions before assembling the record. |
| 884 | ** If this is a real table, attempt conversions as required by the |
| 885 | ** table column affinities. |
| 886 | */ |
| 887 | if( !isView ){ |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 888 | sqlite3TableAffinity(v, pTab, regCols+1); |
danielk1977 | a37cdde | 2004-05-16 11:15:36 +0000 | [diff] [blame] | 889 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 890 | |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 891 | /* Fire BEFORE or INSTEAD OF triggers */ |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 892 | sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE, |
dan | 94d7f50 | 2009-09-24 09:05:49 +0000 | [diff] [blame] | 893 | pTab, regCols-pTab->nCol-1, onError, endOfLoop); |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 894 | |
dan | 76d462e | 2009-08-30 11:42:51 +0000 | [diff] [blame] | 895 | sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1); |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 896 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 897 | |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 898 | /* Compute the content of the next row to insert into a range of |
| 899 | ** registers beginning at regIns. |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 900 | */ |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 901 | if( !isView ){ |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 902 | if( IsVirtual(pTab) ){ |
danielk1977 | 287fb61 | 2008-01-04 19:10:28 +0000 | [diff] [blame] | 903 | /* The row that the VUpdate opcode will delete: none */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 904 | sqlite3VdbeAddOp2(v, OP_Null, 0, regIns); |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 905 | } |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 906 | if( ipkColumn>=0 ){ |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 907 | if( useTempTable ){ |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 908 | sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 909 | }else if( pSelect ){ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 910 | sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 911 | }else{ |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 912 | VdbeOp *pOp; |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 913 | sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid); |
drh | 20411ea | 2009-05-29 19:00:12 +0000 | [diff] [blame] | 914 | pOp = sqlite3VdbeGetOp(v, -1); |
drh | 1b7ecbb | 2009-05-03 01:00:59 +0000 | [diff] [blame] | 915 | if( ALWAYS(pOp) && pOp->opcode==OP_Null && !IsVirtual(pTab) ){ |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 916 | appendFlag = 1; |
| 917 | pOp->opcode = OP_NewRowid; |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 918 | pOp->p1 = iDataCur; |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 919 | pOp->p2 = regRowid; |
| 920 | pOp->p3 = regAutoinc; |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 921 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 922 | } |
drh | f0863fe | 2005-06-12 21:35:51 +0000 | [diff] [blame] | 923 | /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid |
drh | 27a3278 | 2002-06-19 20:32:43 +0000 | [diff] [blame] | 924 | ** to generate a unique primary key value. |
| 925 | */ |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 926 | if( !appendFlag ){ |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 927 | int addr1; |
danielk1977 | bb50e7a | 2008-07-04 10:56:07 +0000 | [diff] [blame] | 928 | if( !IsVirtual(pTab) ){ |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 929 | addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 930 | sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 931 | sqlite3VdbeJumpHere(v, addr1); |
danielk1977 | bb50e7a | 2008-07-04 10:56:07 +0000 | [diff] [blame] | 932 | }else{ |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 933 | addr1 = sqlite3VdbeCurrentAddr(v); |
| 934 | sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v); |
danielk1977 | bb50e7a | 2008-07-04 10:56:07 +0000 | [diff] [blame] | 935 | } |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 936 | sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v); |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 937 | } |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 938 | }else if( IsVirtual(pTab) || withoutRowid ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 939 | sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid); |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 940 | }else{ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 941 | sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 942 | appendFlag = 1; |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 943 | } |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 944 | autoIncStep(pParse, regAutoinc, regRowid); |
drh | 4a32431 | 2001-12-21 14:30:42 +0000 | [diff] [blame] | 945 | |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 946 | /* Compute data for all columns of the new entry, beginning |
danielk1977 | f29ce55 | 2002-05-19 23:43:12 +0000 | [diff] [blame] | 947 | ** with the first column. |
| 948 | */ |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 949 | nHidden = 0; |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 950 | for(i=0; i<pTab->nCol; i++){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 951 | int iRegStore = regRowid+1+i; |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 952 | if( i==pTab->iPKey ){ |
drh | 9adf9ac | 2002-05-15 11:44:13 +0000 | [diff] [blame] | 953 | /* The value of the INTEGER PRIMARY KEY column is always a NULL. |
drh | d82b502 | 2013-10-26 00:58:34 +0000 | [diff] [blame] | 954 | ** Whenever this column is read, the rowid will be substituted |
| 955 | ** in its place. Hence, fill this column with a NULL to avoid |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 956 | ** taking up data space with information that will never be used. |
| 957 | ** As there may be shallow copies of this value, make it a soft-NULL */ |
| 958 | sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); |
drh | 9adf9ac | 2002-05-15 11:44:13 +0000 | [diff] [blame] | 959 | continue; |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 960 | } |
| 961 | if( pColumn==0 ){ |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 962 | if( IsHiddenColumn(&pTab->aCol[i]) ){ |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 963 | j = -1; |
| 964 | nHidden++; |
| 965 | }else{ |
| 966 | j = i - nHidden; |
| 967 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 968 | }else{ |
drh | 9adf9ac | 2002-05-15 11:44:13 +0000 | [diff] [blame] | 969 | for(j=0; j<pColumn->nId; j++){ |
| 970 | if( pColumn->a[j].idx==i ) break; |
| 971 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 972 | } |
danielk1977 | 034ca14 | 2007-06-26 10:38:54 +0000 | [diff] [blame] | 973 | if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 974 | sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 975 | }else if( useTempTable ){ |
danielk1977 | 287fb61 | 2008-01-04 19:10:28 +0000 | [diff] [blame] | 976 | sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 977 | }else if( pSelect ){ |
drh | 05a86c5 | 2014-02-16 01:55:49 +0000 | [diff] [blame] | 978 | if( regFromSelect!=regData ){ |
| 979 | sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore); |
| 980 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 981 | }else{ |
danielk1977 | 287fb61 | 2008-01-04 19:10:28 +0000 | [diff] [blame] | 982 | sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore); |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 983 | } |
drh | bed8690 | 2000-06-02 13:27:59 +0000 | [diff] [blame] | 984 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 985 | |
| 986 | /* Generate code to check constraints and generate index keys and |
danielk1977 | f29ce55 | 2002-05-19 23:43:12 +0000 | [diff] [blame] | 987 | ** do the insertion. |
| 988 | */ |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 989 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
| 990 | if( IsVirtual(pTab) ){ |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 991 | const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); |
drh | 4f3dd15 | 2008-04-28 18:46:43 +0000 | [diff] [blame] | 992 | sqlite3VtabMakeWritable(pParse, pTab); |
danielk1977 | 595a523 | 2009-07-24 17:58:53 +0000 | [diff] [blame] | 993 | sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB); |
dan | b061d05 | 2011-04-25 18:49:57 +0000 | [diff] [blame] | 994 | sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); |
dan | e0af83a | 2009-09-08 19:15:01 +0000 | [diff] [blame] | 995 | sqlite3MayAbort(pParse); |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 996 | }else |
| 997 | #endif |
| 998 | { |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 999 | int isReplace; /* Set to true if constraints may cause a replace */ |
dan | 3b908d4 | 2016-11-08 19:22:32 +0000 | [diff] [blame] | 1000 | int bUseSeek; /* True to use OPFLAG_SEEKRESULT */ |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1001 | sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, |
drh | bdb0022 | 2016-02-10 16:03:20 +0000 | [diff] [blame] | 1002 | regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0 |
drh | 04adf41 | 2008-01-08 18:57:50 +0000 | [diff] [blame] | 1003 | ); |
dan | 8ff2d95 | 2013-09-05 18:40:29 +0000 | [diff] [blame] | 1004 | sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0); |
dan | 3b908d4 | 2016-11-08 19:22:32 +0000 | [diff] [blame] | 1005 | |
| 1006 | /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE |
| 1007 | ** constraints or (b) there are no triggers and this table is not a |
| 1008 | ** parent table in a foreign key constraint. It is safe to set the |
| 1009 | ** flag in the second case as if any REPLACE constraint is hit, an |
| 1010 | ** OP_Delete or OP_IdxDelete instruction will be executed on each |
| 1011 | ** cursor that is disturbed. And these instructions both clear the |
| 1012 | ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT |
| 1013 | ** functionality. */ |
| 1014 | bUseSeek = (isReplace==0 || (pTrigger==0 && |
| 1015 | ((db->flags & SQLITE_ForeignKeys)==0 || sqlite3FkReferences(pTab)==0) |
| 1016 | )); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1017 | sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur, |
dan | 3b908d4 | 2016-11-08 19:22:32 +0000 | [diff] [blame] | 1018 | regIns, aRegIdx, 0, appendFlag, bUseSeek |
| 1019 | ); |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 1020 | } |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 1021 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 1022 | |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 1023 | /* Update the count of rows that are inserted |
| 1024 | */ |
| 1025 | if( (db->flags & SQLITE_CountRows)!=0 ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 1026 | sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); |
drh | 5974a30 | 2000-06-07 14:42:26 +0000 | [diff] [blame] | 1027 | } |
drh | 1ccde15 | 2000-06-17 13:12:39 +0000 | [diff] [blame] | 1028 | |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 1029 | if( pTrigger ){ |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 1030 | /* Code AFTER triggers */ |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 1031 | sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER, |
dan | 94d7f50 | 2009-09-24 09:05:49 +0000 | [diff] [blame] | 1032 | pTab, regData-2-pTab->nCol, onError, endOfLoop); |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 1035 | /* The bottom of the main insertion loop, if the data source |
| 1036 | ** is a SELECT statement. |
danielk1977 | f29ce55 | 2002-05-19 23:43:12 +0000 | [diff] [blame] | 1037 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1038 | sqlite3VdbeResolveLabel(v, endOfLoop); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 1039 | if( useTempTable ){ |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1040 | sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v); |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 1041 | sqlite3VdbeJumpHere(v, addrInsTop); |
drh | 2eb9537 | 2008-06-06 15:04:36 +0000 | [diff] [blame] | 1042 | sqlite3VdbeAddOp1(v, OP_Close, srcTab); |
drh | 142e30d | 2002-08-28 03:00:58 +0000 | [diff] [blame] | 1043 | }else if( pSelect ){ |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 1044 | sqlite3VdbeGoto(v, addrCont); |
drh | e00ee6e | 2008-06-20 15:24:01 +0000 | [diff] [blame] | 1045 | sqlite3VdbeJumpHere(v, addrInsTop); |
drh | 6b56344 | 2001-11-07 16:48:26 +0000 | [diff] [blame] | 1046 | } |
danielk1977 | c3f9bad | 2002-05-15 08:30:12 +0000 | [diff] [blame] | 1047 | |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 1048 | insert_end: |
drh | f338814 | 2004-11-13 03:48:06 +0000 | [diff] [blame] | 1049 | /* Update the sqlite_sequence table by storing the content of the |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 1050 | ** maximum rowid counter values recorded while inserting into |
| 1051 | ** autoincrement tables. |
drh | 2958a4e | 2004-11-12 03:56:15 +0000 | [diff] [blame] | 1052 | */ |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 1053 | if( pParse->nested==0 && pParse->pTriggerTab==0 ){ |
drh | 0b9f50d | 2009-06-23 20:28:53 +0000 | [diff] [blame] | 1054 | sqlite3AutoincrementEnd(pParse); |
| 1055 | } |
drh | 2958a4e | 2004-11-12 03:56:15 +0000 | [diff] [blame] | 1056 | |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 1057 | /* |
danielk1977 | e7de6f2 | 2004-11-05 06:02:06 +0000 | [diff] [blame] | 1058 | ** Return the number of rows inserted. If this routine is |
| 1059 | ** generating code because of a call to sqlite3NestedParse(), do not |
| 1060 | ** invoke the callback function. |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 1061 | */ |
dan | 165921a | 2009-08-28 18:53:45 +0000 | [diff] [blame] | 1062 | if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 1063 | sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); |
danielk1977 | 22322fd | 2004-05-25 23:35:17 +0000 | [diff] [blame] | 1064 | sqlite3VdbeSetNumCols(v, 1); |
danielk1977 | 10fb749 | 2008-10-31 10:53:22 +0000 | [diff] [blame] | 1065 | sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC); |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 1066 | } |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 1067 | |
| 1068 | insert_cleanup: |
drh | 633e6d5 | 2008-07-28 19:34:53 +0000 | [diff] [blame] | 1069 | sqlite3SrcListDelete(db, pTabList); |
| 1070 | sqlite3ExprListDelete(db, pList); |
| 1071 | sqlite3SelectDelete(db, pSelect); |
| 1072 | sqlite3IdListDelete(db, pColumn); |
| 1073 | sqlite3DbFree(db, aRegIdx); |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 1074 | } |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1075 | |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 1076 | /* Make sure "isView" and other macros defined above are undefined. Otherwise |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 1077 | ** they may interfere with compilation of other functions in this file |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 1078 | ** (or in another file, if this file becomes part of the amalgamation). */ |
| 1079 | #ifdef isView |
| 1080 | #undef isView |
| 1081 | #endif |
| 1082 | #ifdef pTrigger |
| 1083 | #undef pTrigger |
| 1084 | #endif |
| 1085 | #ifdef tmask |
| 1086 | #undef tmask |
| 1087 | #endif |
| 1088 | |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1089 | /* |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1090 | ** Meanings of bits in of pWalker->eCode for checkConstraintUnchanged() |
| 1091 | */ |
| 1092 | #define CKCNSTRNT_COLUMN 0x01 /* CHECK constraint uses a changing column */ |
| 1093 | #define CKCNSTRNT_ROWID 0x02 /* CHECK constraint references the ROWID */ |
| 1094 | |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1095 | /* This is the Walker callback from checkConstraintUnchanged(). Set |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1096 | ** bit 0x01 of pWalker->eCode if |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1097 | ** pWalker->eCode to 0 if this expression node references any of the |
| 1098 | ** columns that are being modifed by an UPDATE statement. |
| 1099 | */ |
| 1100 | static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){ |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1101 | if( pExpr->op==TK_COLUMN ){ |
| 1102 | assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 ); |
| 1103 | if( pExpr->iColumn>=0 ){ |
| 1104 | if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){ |
| 1105 | pWalker->eCode |= CKCNSTRNT_COLUMN; |
| 1106 | } |
| 1107 | }else{ |
| 1108 | pWalker->eCode |= CKCNSTRNT_ROWID; |
| 1109 | } |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1110 | } |
| 1111 | return WRC_Continue; |
| 1112 | } |
| 1113 | |
| 1114 | /* |
| 1115 | ** pExpr is a CHECK constraint on a row that is being UPDATE-ed. The |
| 1116 | ** only columns that are modified by the UPDATE are those for which |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1117 | ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true. |
| 1118 | ** |
| 1119 | ** Return true if CHECK constraint pExpr does not use any of the |
| 1120 | ** changing columns (or the rowid if it is changing). In other words, |
| 1121 | ** return true if this CHECK constraint can be skipped when validating |
| 1122 | ** the new row in the UPDATE statement. |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1123 | */ |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1124 | static int checkConstraintUnchanged(Expr *pExpr, int *aiChng, int chngRowid){ |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1125 | Walker w; |
| 1126 | memset(&w, 0, sizeof(w)); |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1127 | w.eCode = 0; |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1128 | w.xExprCallback = checkConstraintExprNode; |
| 1129 | w.u.aiCol = aiChng; |
| 1130 | sqlite3WalkExpr(&w, pExpr); |
drh | 05723a9 | 2016-02-10 19:10:50 +0000 | [diff] [blame] | 1131 | if( !chngRowid ){ |
| 1132 | testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 ); |
| 1133 | w.eCode &= ~CKCNSTRNT_ROWID; |
| 1134 | } |
| 1135 | testcase( w.eCode==0 ); |
| 1136 | testcase( w.eCode==CKCNSTRNT_COLUMN ); |
| 1137 | testcase( w.eCode==CKCNSTRNT_ROWID ); |
| 1138 | testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) ); |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1139 | return !w.eCode; |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1140 | } |
| 1141 | |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1142 | /* |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1143 | ** Generate code to do constraint checks prior to an INSERT or an UPDATE |
| 1144 | ** on table pTab. |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1145 | ** |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1146 | ** The regNewData parameter is the first register in a range that contains |
| 1147 | ** the data to be inserted or the data after the update. There will be |
| 1148 | ** pTab->nCol+1 registers in this range. The first register (the one |
| 1149 | ** that regNewData points to) will contain the new rowid, or NULL in the |
| 1150 | ** case of a WITHOUT ROWID table. The second register in the range will |
| 1151 | ** contain the content of the first table column. The third register will |
| 1152 | ** contain the content of the second table column. And so forth. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1153 | ** |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1154 | ** The regOldData parameter is similar to regNewData except that it contains |
| 1155 | ** the data prior to an UPDATE rather than afterwards. regOldData is zero |
| 1156 | ** for an INSERT. This routine can distinguish between UPDATE and INSERT by |
| 1157 | ** checking regOldData for zero. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1158 | ** |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1159 | ** For an UPDATE, the pkChng boolean is true if the true primary key (the |
| 1160 | ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table) |
| 1161 | ** might be modified by the UPDATE. If pkChng is false, then the key of |
| 1162 | ** the iDataCur content table is guaranteed to be unchanged by the UPDATE. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1163 | ** |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1164 | ** For an INSERT, the pkChng boolean indicates whether or not the rowid |
| 1165 | ** was explicitly specified as part of the INSERT statement. If pkChng |
| 1166 | ** is zero, it means that the either rowid is computed automatically or |
| 1167 | ** that the table is a WITHOUT ROWID table and has no rowid. On an INSERT, |
| 1168 | ** pkChng will only be true if the INSERT statement provides an integer |
| 1169 | ** value for either the rowid column or its INTEGER PRIMARY KEY alias. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1170 | ** |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1171 | ** The code generated by this routine will store new index entries into |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 1172 | ** registers identified by aRegIdx[]. No index entry is created for |
| 1173 | ** indices where aRegIdx[i]==0. The order of indices in aRegIdx[] is |
| 1174 | ** the same as the order of indices on the linked list of indices |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1175 | ** at pTab->pIndex. |
| 1176 | ** |
| 1177 | ** The caller must have already opened writeable cursors on the main |
| 1178 | ** table and all applicable indices (that is to say, all indices for which |
| 1179 | ** aRegIdx[] is not zero). iDataCur is the cursor for the main table when |
| 1180 | ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY |
| 1181 | ** index when operating on a WITHOUT ROWID table. iIdxCur is the cursor |
| 1182 | ** for the first index in the pTab->pIndex list. Cursors for other indices |
| 1183 | ** are at iIdxCur+N for the N-th element of the pTab->pIndex list. |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1184 | ** |
| 1185 | ** This routine also generates code to check constraints. NOT NULL, |
| 1186 | ** CHECK, and UNIQUE constraints are all checked. If a constraint fails, |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1187 | ** then the appropriate action is performed. There are five possible |
| 1188 | ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1189 | ** |
| 1190 | ** Constraint type Action What Happens |
| 1191 | ** --------------- ---------- ---------------------------------------- |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1192 | ** any ROLLBACK The current transaction is rolled back and |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1193 | ** sqlite3_step() returns immediately with a |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1194 | ** return code of SQLITE_CONSTRAINT. |
| 1195 | ** |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1196 | ** any ABORT Back out changes from the current command |
| 1197 | ** only (do not do a complete rollback) then |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1198 | ** cause sqlite3_step() to return immediately |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1199 | ** with SQLITE_CONSTRAINT. |
| 1200 | ** |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1201 | ** any FAIL Sqlite3_step() returns immediately with a |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1202 | ** return code of SQLITE_CONSTRAINT. The |
| 1203 | ** transaction is not rolled back and any |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1204 | ** changes to prior rows are retained. |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1205 | ** |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1206 | ** any IGNORE The attempt in insert or update the current |
| 1207 | ** row is skipped, without throwing an error. |
| 1208 | ** Processing continues with the next row. |
| 1209 | ** (There is an immediate jump to ignoreDest.) |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1210 | ** |
| 1211 | ** NOT NULL REPLACE The NULL value is replace by the default |
| 1212 | ** value for that column. If the default value |
| 1213 | ** is NULL, the action is the same as ABORT. |
| 1214 | ** |
| 1215 | ** UNIQUE REPLACE The other row that conflicts with the row |
| 1216 | ** being inserted is removed. |
| 1217 | ** |
| 1218 | ** CHECK REPLACE Illegal. The results in an exception. |
| 1219 | ** |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1220 | ** Which action to take is determined by the overrideError parameter. |
| 1221 | ** Or if overrideError==OE_Default, then the pParse->onError parameter |
| 1222 | ** is used. Or if pParse->onError==OE_Default then the onError value |
| 1223 | ** for the constraint is used. |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1224 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1225 | void sqlite3GenerateConstraintChecks( |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1226 | Parse *pParse, /* The parser context */ |
| 1227 | Table *pTab, /* The table being inserted or updated */ |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1228 | int *aRegIdx, /* Use register aRegIdx[i] for index i. 0 for unused */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1229 | int iDataCur, /* Canonical data cursor (main table or PK index) */ |
| 1230 | int iIdxCur, /* First index cursor */ |
| 1231 | int regNewData, /* First register in a range holding values to insert */ |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1232 | int regOldData, /* Previous content. 0 for INSERTs */ |
| 1233 | u8 pkChng, /* Non-zero if the rowid or PRIMARY KEY changed */ |
| 1234 | u8 overrideError, /* Override onError to this if not OE_Default */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1235 | int ignoreDest, /* Jump to this label on an OE_Ignore resolution */ |
drh | bdb0022 | 2016-02-10 16:03:20 +0000 | [diff] [blame] | 1236 | int *pbMayReplace, /* OUT: Set to true if constraint may cause a replace */ |
| 1237 | int *aiChng /* column i is unchanged if aiChng[i]<0 */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1238 | ){ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1239 | Vdbe *v; /* VDBE under constrution */ |
drh | 1b7ecbb | 2009-05-03 01:00:59 +0000 | [diff] [blame] | 1240 | Index *pIdx; /* Pointer to one of the indices */ |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1241 | Index *pPk = 0; /* The PRIMARY KEY index */ |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1242 | sqlite3 *db; /* Database connection */ |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1243 | int i; /* loop counter */ |
| 1244 | int ix; /* Index loop counter */ |
| 1245 | int nCol; /* Number of columns */ |
| 1246 | int onError; /* Conflict resolution strategy */ |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 1247 | int addr1; /* Address of jump instruction */ |
drh | 1b7ecbb | 2009-05-03 01:00:59 +0000 | [diff] [blame] | 1248 | int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */ |
drh | 6fbe41a | 2013-10-30 20:22:55 +0000 | [diff] [blame] | 1249 | int nPkField; /* Number of fields in PRIMARY KEY. 1 for ROWID tables */ |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1250 | int ipkTop = 0; /* Top of the rowid change constraint check */ |
| 1251 | int ipkBottom = 0; /* Bottom of the rowid change constraint check */ |
| 1252 | u8 isUpdate; /* True if this is an UPDATE operation */ |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 1253 | u8 bAffinityDone = 0; /* True if the OP_Affinity operation has been run */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1254 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1255 | isUpdate = regOldData!=0; |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1256 | db = pParse->db; |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1257 | v = sqlite3GetVdbe(pParse); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1258 | assert( v!=0 ); |
drh | 417be79 | 2002-03-03 18:59:40 +0000 | [diff] [blame] | 1259 | assert( pTab->pSelect==0 ); /* This table is not a VIEW */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1260 | nCol = pTab->nCol; |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1261 | |
| 1262 | /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for |
| 1263 | ** normal rowid tables. nPkField is the number of key fields in the |
| 1264 | ** pPk index or 1 for a rowid table. In other words, nPkField is the |
| 1265 | ** number of fields in the true primary key of the table. */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1266 | if( HasRowid(pTab) ){ |
| 1267 | pPk = 0; |
| 1268 | nPkField = 1; |
| 1269 | }else{ |
| 1270 | pPk = sqlite3PrimaryKeyIndex(pTab); |
| 1271 | nPkField = pPk->nKeyCol; |
| 1272 | } |
drh | 6fbe41a | 2013-10-30 20:22:55 +0000 | [diff] [blame] | 1273 | |
| 1274 | /* Record that this module has started */ |
| 1275 | VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)", |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1276 | iDataCur, iIdxCur, regNewData, regOldData, pkChng)); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1277 | |
| 1278 | /* Test all NOT NULL constraints. |
| 1279 | */ |
| 1280 | for(i=0; i<nCol; i++){ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1281 | if( i==pTab->iPKey ){ |
drh | bdb0022 | 2016-02-10 16:03:20 +0000 | [diff] [blame] | 1282 | continue; /* ROWID is never NULL */ |
| 1283 | } |
| 1284 | if( aiChng && aiChng[i]<0 ){ |
| 1285 | /* Don't bother checking for NOT NULL on columns that do not change */ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1286 | continue; |
| 1287 | } |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1288 | onError = pTab->aCol[i].notNull; |
drh | bdb0022 | 2016-02-10 16:03:20 +0000 | [diff] [blame] | 1289 | if( onError==OE_None ) continue; /* This column is allowed to be NULL */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1290 | if( overrideError!=OE_Default ){ |
| 1291 | onError = overrideError; |
drh | a996e47 | 2003-05-16 02:30:27 +0000 | [diff] [blame] | 1292 | }else if( onError==OE_Default ){ |
| 1293 | onError = OE_Abort; |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1294 | } |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1295 | if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1296 | onError = OE_Abort; |
| 1297 | } |
danielk1977 | b84f96f | 2005-01-20 11:32:23 +0000 | [diff] [blame] | 1298 | assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail |
| 1299 | || onError==OE_Ignore || onError==OE_Replace ); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1300 | switch( onError ){ |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1301 | case OE_Abort: |
dan | e0af83a | 2009-09-08 19:15:01 +0000 | [diff] [blame] | 1302 | sqlite3MayAbort(pParse); |
drh | 0978d4f | 2013-10-29 16:14:35 +0000 | [diff] [blame] | 1303 | /* Fall through */ |
dan | e0af83a | 2009-09-08 19:15:01 +0000 | [diff] [blame] | 1304 | case OE_Rollback: |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1305 | case OE_Fail: { |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 1306 | char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName, |
| 1307 | pTab->aCol[i].zName); |
| 1308 | sqlite3VdbeAddOp4(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError, |
| 1309 | regNewData+1+i, zMsg, P4_DYNAMIC); |
| 1310 | sqlite3VdbeChangeP5(v, P5_ConstraintNotNull); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1311 | VdbeCoverage(v); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1312 | break; |
| 1313 | } |
| 1314 | case OE_Ignore: { |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1315 | sqlite3VdbeAddOp2(v, OP_IsNull, regNewData+1+i, ignoreDest); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1316 | VdbeCoverage(v); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1317 | break; |
| 1318 | } |
drh | 098d168 | 2009-05-02 15:46:46 +0000 | [diff] [blame] | 1319 | default: { |
| 1320 | assert( onError==OE_Replace ); |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 1321 | addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regNewData+1+i); |
| 1322 | VdbeCoverage(v); |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1323 | sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regNewData+1+i); |
drh | 728e0f9 | 2015-10-10 14:41:28 +0000 | [diff] [blame] | 1324 | sqlite3VdbeJumpHere(v, addr1); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1325 | break; |
| 1326 | } |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1327 | } |
| 1328 | } |
| 1329 | |
| 1330 | /* Test all CHECK constraints |
| 1331 | */ |
drh | ffe07b2 | 2005-11-03 00:41:17 +0000 | [diff] [blame] | 1332 | #ifndef SQLITE_OMIT_CHECK |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1333 | if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ |
| 1334 | ExprList *pCheck = pTab->pCheck; |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1335 | pParse->ckBase = regNewData+1; |
drh | aa01c7e | 2006-03-15 16:26:10 +0000 | [diff] [blame] | 1336 | onError = overrideError!=OE_Default ? overrideError : OE_Abort; |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1337 | for(i=0; i<pCheck->nExpr; i++){ |
drh | 05723a9 | 2016-02-10 19:10:50 +0000 | [diff] [blame] | 1338 | int allOk; |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1339 | Expr *pExpr = pCheck->a[i].pExpr; |
drh | 98bfa16 | 2016-02-10 18:24:05 +0000 | [diff] [blame] | 1340 | if( aiChng && checkConstraintUnchanged(pExpr, aiChng, pkChng) ) continue; |
drh | 05723a9 | 2016-02-10 19:10:50 +0000 | [diff] [blame] | 1341 | allOk = sqlite3VdbeMakeLabel(v); |
drh | 2a0b527 | 2016-02-10 16:52:24 +0000 | [diff] [blame] | 1342 | sqlite3ExprIfTrue(pParse, pExpr, allOk, SQLITE_JUMPIFNULL); |
drh | 2d8e920 | 2012-12-08 04:10:44 +0000 | [diff] [blame] | 1343 | if( onError==OE_Ignore ){ |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 1344 | sqlite3VdbeGoto(v, ignoreDest); |
drh | 2d8e920 | 2012-12-08 04:10:44 +0000 | [diff] [blame] | 1345 | }else{ |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 1346 | char *zName = pCheck->a[i].zName; |
| 1347 | if( zName==0 ) zName = pTab->zName; |
drh | 2d8e920 | 2012-12-08 04:10:44 +0000 | [diff] [blame] | 1348 | if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */ |
drh | d91c1a1 | 2013-02-09 13:58:25 +0000 | [diff] [blame] | 1349 | sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK, |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 1350 | onError, zName, P4_TRANSIENT, |
| 1351 | P5_ConstraintCheck); |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1352 | } |
drh | 2d8e920 | 2012-12-08 04:10:44 +0000 | [diff] [blame] | 1353 | sqlite3VdbeResolveLabel(v, allOk); |
drh | aa01c7e | 2006-03-15 16:26:10 +0000 | [diff] [blame] | 1354 | } |
drh | ffe07b2 | 2005-11-03 00:41:17 +0000 | [diff] [blame] | 1355 | } |
| 1356 | #endif /* !defined(SQLITE_OMIT_CHECK) */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1357 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1358 | /* If rowid is changing, make sure the new rowid does not previously |
| 1359 | ** exist in the table. |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1360 | */ |
drh | 6fbe41a | 2013-10-30 20:22:55 +0000 | [diff] [blame] | 1361 | if( pkChng && pPk==0 ){ |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1362 | int addrRowidOk = sqlite3VdbeMakeLabel(v); |
| 1363 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1364 | /* Figure out what action to take in case of a rowid collision */ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1365 | onError = pTab->keyConf; |
| 1366 | if( overrideError!=OE_Default ){ |
| 1367 | onError = overrideError; |
drh | a996e47 | 2003-05-16 02:30:27 +0000 | [diff] [blame] | 1368 | }else if( onError==OE_Default ){ |
| 1369 | onError = OE_Abort; |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1370 | } |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1371 | |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1372 | if( isUpdate ){ |
drh | 7405fa7 | 2016-11-09 16:03:36 +0000 | [diff] [blame] | 1373 | /* pkChng!=0 does not mean that the rowid has changed, only that |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1374 | ** it might have changed. Skip the conflict logic below if the rowid |
| 1375 | ** is unchanged. */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1376 | sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); |
drh | 3d77dee | 2014-02-19 14:20:49 +0000 | [diff] [blame] | 1377 | sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1378 | VdbeCoverage(v); |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1379 | } |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1380 | |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1381 | /* If the response to a rowid conflict is REPLACE but the response |
| 1382 | ** to some other UNIQUE constraint is FAIL or IGNORE, then we need |
| 1383 | ** to defer the running of the rowid conflict checking until after |
| 1384 | ** the UNIQUE constraints have run. |
| 1385 | */ |
| 1386 | if( onError==OE_Replace && overrideError!=OE_Replace ){ |
| 1387 | for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ |
| 1388 | if( pIdx->onError==OE_Ignore || pIdx->onError==OE_Fail ){ |
| 1389 | ipkTop = sqlite3VdbeAddOp0(v, OP_Goto); |
| 1390 | break; |
| 1391 | } |
| 1392 | } |
| 1393 | } |
| 1394 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1395 | /* Check to see if the new rowid already exists in the table. Skip |
| 1396 | ** the following conflict logic if it does not. */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1397 | sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1398 | VdbeCoverage(v); |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1399 | |
| 1400 | /* Generate code that deals with a rowid collision */ |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1401 | switch( onError ){ |
| 1402 | default: { |
| 1403 | onError = OE_Abort; |
| 1404 | /* Fall thru into the next case */ |
drh | 79b0c95 | 2002-05-21 12:56:43 +0000 | [diff] [blame] | 1405 | } |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1406 | case OE_Rollback: |
| 1407 | case OE_Abort: |
| 1408 | case OE_Fail: { |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 1409 | sqlite3RowidConstraint(pParse, onError, pTab); |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1410 | break; |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1411 | } |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1412 | case OE_Replace: { |
| 1413 | /* If there are DELETE triggers on this table and the |
| 1414 | ** recursive-triggers flag is set, call GenerateRowDelete() to |
mistachkin | d557843 | 2012-08-25 10:01:29 +0000 | [diff] [blame] | 1415 | ** remove the conflicting row from the table. This will fire |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1416 | ** the triggers and remove both the table and index b-tree entries. |
| 1417 | ** |
| 1418 | ** Otherwise, if there are no triggers or the recursive-triggers |
dan | da730f6 | 2010-02-18 08:19:19 +0000 | [diff] [blame] | 1419 | ** flag is not set, but the table has one or more indexes, call |
| 1420 | ** GenerateRowIndexDelete(). This removes the index b-tree entries |
| 1421 | ** only. The table b-tree entry will be replaced by the new entry |
| 1422 | ** when it is inserted. |
| 1423 | ** |
| 1424 | ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called, |
| 1425 | ** also invoke MultiWrite() to indicate that this VDBE may require |
| 1426 | ** statement rollback (if the statement is aborted after the delete |
| 1427 | ** takes place). Earlier versions called sqlite3MultiWrite() regardless, |
| 1428 | ** but being more selective here allows statements like: |
| 1429 | ** |
| 1430 | ** REPLACE INTO t(rowid) VALUES($newrowid) |
| 1431 | ** |
| 1432 | ** to run without a statement journal if there are no indexes on the |
| 1433 | ** table. |
| 1434 | */ |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1435 | Trigger *pTrigger = 0; |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1436 | if( db->flags&SQLITE_RecTriggers ){ |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1437 | pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); |
| 1438 | } |
dan | e7a94d8 | 2009-10-01 16:09:04 +0000 | [diff] [blame] | 1439 | if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){ |
dan | da730f6 | 2010-02-18 08:19:19 +0000 | [diff] [blame] | 1440 | sqlite3MultiWrite(pParse); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1441 | sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, |
dan | 438b881 | 2015-09-15 15:55:15 +0000 | [diff] [blame] | 1442 | regNewData, 1, 0, OE_Replace, 1, -1); |
dan | 46c47d4 | 2011-03-01 18:42:07 +0000 | [diff] [blame] | 1443 | }else{ |
drh | 9b1c62d | 2011-03-30 21:04:43 +0000 | [diff] [blame] | 1444 | #ifdef SQLITE_ENABLE_PREUPDATE_HOOK |
drh | cbf1b8e | 2013-11-11 22:55:26 +0000 | [diff] [blame] | 1445 | if( HasRowid(pTab) ){ |
| 1446 | /* This OP_Delete opcode fires the pre-update-hook only. It does |
| 1447 | ** not modify the b-tree. It is more efficient to let the coming |
| 1448 | ** OP_Insert replace the existing entry than it is to delete the |
| 1449 | ** existing entry and then insert a new one. */ |
| 1450 | sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP); |
drh | f14b7fb | 2016-12-07 21:35:55 +0000 | [diff] [blame^] | 1451 | sqlite3VdbeAppendP4(v, pTab, P4_TABLE); |
drh | cbf1b8e | 2013-11-11 22:55:26 +0000 | [diff] [blame] | 1452 | } |
drh | 9b1c62d | 2011-03-30 21:04:43 +0000 | [diff] [blame] | 1453 | #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ |
dan | 46c47d4 | 2011-03-01 18:42:07 +0000 | [diff] [blame] | 1454 | if( pTab->pIndex ){ |
| 1455 | sqlite3MultiWrite(pParse); |
drh | b77ebd8 | 2015-09-15 13:42:16 +0000 | [diff] [blame] | 1456 | sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1); |
dan | 46c47d4 | 2011-03-01 18:42:07 +0000 | [diff] [blame] | 1457 | } |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1458 | } |
| 1459 | seenReplace = 1; |
| 1460 | break; |
drh | 5383ae5 | 2003-06-04 12:23:30 +0000 | [diff] [blame] | 1461 | } |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1462 | case OE_Ignore: { |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1463 | /*assert( seenReplace==0 );*/ |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 1464 | sqlite3VdbeGoto(v, ignoreDest); |
dan | e1e2ae2 | 2009-09-24 16:52:28 +0000 | [diff] [blame] | 1465 | break; |
| 1466 | } |
| 1467 | } |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1468 | sqlite3VdbeResolveLabel(v, addrRowidOk); |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1469 | if( ipkTop ){ |
| 1470 | ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto); |
| 1471 | sqlite3VdbeJumpHere(v, ipkTop); |
drh | 5383ae5 | 2003-06-04 12:23:30 +0000 | [diff] [blame] | 1472 | } |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1473 | } |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 1474 | |
| 1475 | /* Test all UNIQUE constraints by creating entries for each UNIQUE |
| 1476 | ** index and making sure that duplicate entries do not already exist. |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1477 | ** Compute the revised record entries for indices as we go. |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1478 | ** |
| 1479 | ** This loop also handles the case of the PRIMARY KEY index for a |
| 1480 | ** WITHOUT ROWID table. |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 1481 | */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1482 | for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1483 | int regIdx; /* Range of registers hold conent for pIdx */ |
| 1484 | int regR; /* Range of registers holding conflicting PK */ |
| 1485 | int iThisCur; /* Cursor for this UNIQUE index */ |
| 1486 | int addrUniqueOk; /* Jump here if the UNIQUE constraint is satisfied */ |
drh | 2184fc7 | 2011-04-09 03:04:13 +0000 | [diff] [blame] | 1487 | |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1488 | if( aRegIdx[ix]==0 ) continue; /* Skip indices that do not change */ |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 1489 | if( bAffinityDone==0 ){ |
| 1490 | sqlite3TableAffinity(v, pTab, regNewData+1); |
| 1491 | bAffinityDone = 1; |
| 1492 | } |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1493 | iThisCur = iIdxCur+ix; |
| 1494 | addrUniqueOk = sqlite3VdbeMakeLabel(v); |
drh | b2fe7d8 | 2003-04-20 17:29:23 +0000 | [diff] [blame] | 1495 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1496 | /* Skip partial indices for which the WHERE clause is not true */ |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1497 | if( pIdx->pPartIdxWhere ){ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1498 | sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]); |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1499 | pParse->ckBase = regNewData+1; |
drh | 72bc820 | 2015-06-11 13:58:35 +0000 | [diff] [blame] | 1500 | sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk, |
| 1501 | SQLITE_JUMPIFNULL); |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1502 | pParse->ckBase = 0; |
| 1503 | } |
| 1504 | |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1505 | /* Create a record for this index entry as it should appear after |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1506 | ** the insert or update. Store that record in the aRegIdx[ix] register |
| 1507 | */ |
drh | bf2f573 | 2016-11-10 16:07:43 +0000 | [diff] [blame] | 1508 | regIdx = aRegIdx[ix]+1; |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1509 | for(i=0; i<pIdx->nColumn; i++){ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1510 | int iField = pIdx->aiColumn[i]; |
drh | f82b9af | 2013-11-01 14:03:20 +0000 | [diff] [blame] | 1511 | int x; |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 1512 | if( iField==XN_EXPR ){ |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1513 | pParse->ckBase = regNewData+1; |
drh | 1c75c9d | 2015-12-21 15:22:13 +0000 | [diff] [blame] | 1514 | sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i); |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1515 | pParse->ckBase = 0; |
| 1516 | VdbeComment((v, "%s column %d", pIdx->zName, i)); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1517 | }else{ |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 1518 | if( iField==XN_ROWID || iField==pTab->iPKey ){ |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1519 | x = regNewData; |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1520 | }else{ |
| 1521 | x = iField + regNewData + 1; |
| 1522 | } |
drh | fed7ac6 | 2015-10-15 18:04:59 +0000 | [diff] [blame] | 1523 | sqlite3VdbeAddOp2(v, iField<0 ? OP_IntCopy : OP_SCopy, x, regIdx+i); |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1524 | VdbeComment((v, "%s", iField<0 ? "rowid" : pTab->aCol[iField].zName)); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1525 | } |
| 1526 | } |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1527 | sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1528 | VdbeComment((v, "for %s", pIdx->zName)); |
drh | b2fe7d8 | 2003-04-20 17:29:23 +0000 | [diff] [blame] | 1529 | |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1530 | /* In an UPDATE operation, if this index is the PRIMARY KEY index |
| 1531 | ** of a WITHOUT ROWID table and there has been no change the |
| 1532 | ** primary key, then no collision is possible. The collision detection |
| 1533 | ** logic below can all be skipped. */ |
drh | 00012df | 2013-11-05 01:59:07 +0000 | [diff] [blame] | 1534 | if( isUpdate && pPk==pIdx && pkChng==0 ){ |
drh | da475b8 | 2013-11-04 21:44:54 +0000 | [diff] [blame] | 1535 | sqlite3VdbeResolveLabel(v, addrUniqueOk); |
| 1536 | continue; |
| 1537 | } |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1538 | |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1539 | /* Find out what action to take in case there is a uniqueness conflict */ |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1540 | onError = pIdx->onError; |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 1541 | if( onError==OE_None ){ |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1542 | sqlite3VdbeResolveLabel(v, addrUniqueOk); |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 1543 | continue; /* pIdx is not a UNIQUE index */ |
| 1544 | } |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1545 | if( overrideError!=OE_Default ){ |
| 1546 | onError = overrideError; |
drh | a996e47 | 2003-05-16 02:30:27 +0000 | [diff] [blame] | 1547 | }else if( onError==OE_Default ){ |
| 1548 | onError = OE_Abort; |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1549 | } |
drh | c6c9e15 | 2016-11-10 17:01:36 +0000 | [diff] [blame] | 1550 | |
| 1551 | if( ix==0 && pPk==pIdx && onError==OE_Replace && pPk->pNext==0 ){ |
| 1552 | sqlite3VdbeResolveLabel(v, addrUniqueOk); |
| 1553 | continue; |
| 1554 | } |
| 1555 | |
drh | 5383ae5 | 2003-06-04 12:23:30 +0000 | [diff] [blame] | 1556 | |
drh | b2fe7d8 | 2003-04-20 17:29:23 +0000 | [diff] [blame] | 1557 | /* Check to see if the new index entry will be unique */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1558 | sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk, |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1559 | regIdx, pIdx->nKeyCol); VdbeCoverage(v); |
drh | f8ffb27 | 2013-11-01 17:08:56 +0000 | [diff] [blame] | 1560 | |
| 1561 | /* Generate code to handle collisions */ |
drh | 392ee21 | 2013-11-08 16:54:56 +0000 | [diff] [blame] | 1562 | regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField); |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1563 | if( isUpdate || onError==OE_Replace ){ |
| 1564 | if( HasRowid(pTab) ){ |
| 1565 | sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR); |
| 1566 | /* Conflict only if the rowid of the existing index entry |
| 1567 | ** is different from old-rowid */ |
| 1568 | if( isUpdate ){ |
| 1569 | sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); |
drh | 3d77dee | 2014-02-19 14:20:49 +0000 | [diff] [blame] | 1570 | sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1571 | VdbeCoverage(v); |
drh | da475b8 | 2013-11-04 21:44:54 +0000 | [diff] [blame] | 1572 | } |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1573 | }else{ |
| 1574 | int x; |
| 1575 | /* Extract the PRIMARY KEY from the end of the index entry and |
| 1576 | ** store it in registers regR..regR+nPk-1 */ |
drh | a021f12 | 2013-12-19 14:34:34 +0000 | [diff] [blame] | 1577 | if( pIdx!=pPk ){ |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1578 | for(i=0; i<pPk->nKeyCol; i++){ |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 1579 | assert( pPk->aiColumn[i]>=0 ); |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1580 | x = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[i]); |
| 1581 | sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i); |
| 1582 | VdbeComment((v, "%s.%s", pTab->zName, |
| 1583 | pTab->aCol[pPk->aiColumn[i]].zName)); |
drh | da475b8 | 2013-11-04 21:44:54 +0000 | [diff] [blame] | 1584 | } |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1585 | } |
| 1586 | if( isUpdate ){ |
| 1587 | /* If currently processing the PRIMARY KEY of a WITHOUT ROWID |
| 1588 | ** table, only conflict if the new PRIMARY KEY values are actually |
| 1589 | ** different from the old. |
| 1590 | ** |
| 1591 | ** For a UNIQUE index, only conflict if the PRIMARY KEY values |
| 1592 | ** of the matched index row are different from the original PRIMARY |
| 1593 | ** KEY values of this row before the update. */ |
| 1594 | int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol; |
| 1595 | int op = OP_Ne; |
drh | 48dd1d8 | 2014-05-27 18:18:58 +0000 | [diff] [blame] | 1596 | int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR); |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1597 | |
| 1598 | for(i=0; i<pPk->nKeyCol; i++){ |
| 1599 | char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]); |
| 1600 | x = pPk->aiColumn[i]; |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 1601 | assert( x>=0 ); |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1602 | if( i==(pPk->nKeyCol-1) ){ |
| 1603 | addrJump = addrUniqueOk; |
| 1604 | op = OP_Eq; |
| 1605 | } |
| 1606 | sqlite3VdbeAddOp4(v, op, |
| 1607 | regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ |
| 1608 | ); |
drh | 3d77dee | 2014-02-19 14:20:49 +0000 | [diff] [blame] | 1609 | sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); |
| 1610 | VdbeCoverageIf(v, op==OP_Eq); |
| 1611 | VdbeCoverageIf(v, op==OP_Ne); |
drh | 46d03fc | 2013-12-19 02:23:45 +0000 | [diff] [blame] | 1612 | } |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1613 | } |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1614 | } |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1615 | } |
drh | b2fe7d8 | 2003-04-20 17:29:23 +0000 | [diff] [blame] | 1616 | |
| 1617 | /* Generate code that executes if the new index entry is not unique */ |
danielk1977 | b84f96f | 2005-01-20 11:32:23 +0000 | [diff] [blame] | 1618 | assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail |
| 1619 | || onError==OE_Ignore || onError==OE_Replace ); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1620 | switch( onError ){ |
drh | 1c92853 | 2002-01-31 15:54:21 +0000 | [diff] [blame] | 1621 | case OE_Rollback: |
| 1622 | case OE_Abort: |
| 1623 | case OE_Fail: { |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 1624 | sqlite3UniqueConstraint(pParse, onError, pIdx); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1625 | break; |
| 1626 | } |
| 1627 | case OE_Ignore: { |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 1628 | sqlite3VdbeGoto(v, ignoreDest); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1629 | break; |
| 1630 | } |
drh | 098d168 | 2009-05-02 15:46:46 +0000 | [diff] [blame] | 1631 | default: { |
dan | 2283d46 | 2009-09-08 15:55:15 +0000 | [diff] [blame] | 1632 | Trigger *pTrigger = 0; |
drh | 098d168 | 2009-05-02 15:46:46 +0000 | [diff] [blame] | 1633 | assert( onError==OE_Replace ); |
dan | 1bea559 | 2009-09-24 11:31:21 +0000 | [diff] [blame] | 1634 | sqlite3MultiWrite(pParse); |
drh | 2938f92 | 2012-03-07 19:13:29 +0000 | [diff] [blame] | 1635 | if( db->flags&SQLITE_RecTriggers ){ |
dan | 2283d46 | 2009-09-08 15:55:15 +0000 | [diff] [blame] | 1636 | pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); |
| 1637 | } |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1638 | sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, |
drh | b0264ee | 2015-09-14 14:45:50 +0000 | [diff] [blame] | 1639 | regR, nPkField, 0, OE_Replace, |
| 1640 | (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), -1); |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1641 | seenReplace = 1; |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1642 | break; |
| 1643 | } |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1644 | } |
drh | 11e8527 | 2013-10-26 15:40:48 +0000 | [diff] [blame] | 1645 | sqlite3VdbeResolveLabel(v, addrUniqueOk); |
drh | 392ee21 | 2013-11-08 16:54:56 +0000 | [diff] [blame] | 1646 | if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1647 | } |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1648 | if( ipkTop ){ |
drh | 076e85f | 2015-09-03 13:46:12 +0000 | [diff] [blame] | 1649 | sqlite3VdbeGoto(v, ipkTop+1); |
drh | 8d1b82e | 2013-11-05 19:41:32 +0000 | [diff] [blame] | 1650 | sqlite3VdbeJumpHere(v, ipkBottom); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1651 | } |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 1652 | |
drh | 4308e34 | 2013-11-11 16:55:52 +0000 | [diff] [blame] | 1653 | *pbMayReplace = seenReplace; |
drh | ce60aa4 | 2013-11-08 01:09:15 +0000 | [diff] [blame] | 1654 | VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace)); |
drh | 9cfcf5d | 2002-01-29 18:41:24 +0000 | [diff] [blame] | 1655 | } |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1656 | |
| 1657 | /* |
| 1658 | ** This routine generates code to finish the INSERT or UPDATE operation |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1659 | ** that was started by a prior call to sqlite3GenerateConstraintChecks. |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1660 | ** A consecutive range of registers starting at regNewData contains the |
drh | 04adf41 | 2008-01-08 18:57:50 +0000 | [diff] [blame] | 1661 | ** rowid and the content to be inserted. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1662 | ** |
drh | b419a92 | 2002-01-30 16:17:23 +0000 | [diff] [blame] | 1663 | ** The arguments to this routine should be the same as the first six |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1664 | ** arguments to sqlite3GenerateConstraintChecks. |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1665 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1666 | void sqlite3CompleteInsertion( |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1667 | Parse *pParse, /* The parser context */ |
| 1668 | Table *pTab, /* the table into which we are inserting */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1669 | int iDataCur, /* Cursor of the canonical data source */ |
| 1670 | int iIdxCur, /* First index cursor */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1671 | int regNewData, /* Range of content */ |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 1672 | int *aRegIdx, /* Register used by each index. 0 for unused indices */ |
drh | 70ce3f0 | 2003-04-15 19:22:22 +0000 | [diff] [blame] | 1673 | int isUpdate, /* True for UPDATE, False for INSERT */ |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 1674 | int appendBias, /* True if this is likely to be an append */ |
| 1675 | int useSeekResult /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1676 | ){ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1677 | Vdbe *v; /* Prepared statements under construction */ |
| 1678 | Index *pIdx; /* An index being inserted or updated */ |
| 1679 | u8 pik_flags; /* flag values passed to the btree insert */ |
| 1680 | int regData; /* Content registers (after the rowid) */ |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 1681 | int regRec; /* Register holding assembled record for the table */ |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1682 | int i; /* Loop counter */ |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 1683 | u8 bAffinityDone = 0; /* True if OP_Affinity has been run already */ |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1684 | |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1685 | v = sqlite3GetVdbe(pParse); |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1686 | assert( v!=0 ); |
drh | 417be79 | 2002-03-03 18:59:40 +0000 | [diff] [blame] | 1687 | assert( pTab->pSelect==0 ); /* This table is not a VIEW */ |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1688 | for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 1689 | if( aRegIdx[i]==0 ) continue; |
drh | 57bf4a8 | 2014-02-17 14:59:22 +0000 | [diff] [blame] | 1690 | bAffinityDone = 1; |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1691 | if( pIdx->pPartIdxWhere ){ |
| 1692 | sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 1693 | VdbeCoverage(v); |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1694 | } |
drh | 2c4dfc3 | 2016-11-10 14:24:04 +0000 | [diff] [blame] | 1695 | sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i], |
drh | c6c9e15 | 2016-11-10 17:01:36 +0000 | [diff] [blame] | 1696 | aRegIdx[i]+1, |
| 1697 | pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn); |
drh | 6546af1 | 2013-11-04 15:23:25 +0000 | [diff] [blame] | 1698 | pik_flags = 0; |
| 1699 | if( useSeekResult ) pik_flags = OPFLAG_USESEEKRESULT; |
drh | 48dd1d8 | 2014-05-27 18:18:58 +0000 | [diff] [blame] | 1700 | if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ |
drh | 4308e34 | 2013-11-11 16:55:52 +0000 | [diff] [blame] | 1701 | assert( pParse->nested==0 ); |
drh | 6546af1 | 2013-11-04 15:23:25 +0000 | [diff] [blame] | 1702 | pik_flags |= OPFLAG_NCHANGE; |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 1703 | } |
drh | 9b34abe | 2016-01-16 15:12:35 +0000 | [diff] [blame] | 1704 | sqlite3VdbeChangeP5(v, pik_flags); |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1705 | } |
drh | ec95c44 | 2013-10-23 01:57:32 +0000 | [diff] [blame] | 1706 | if( !HasRowid(pTab) ) return; |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1707 | regData = regNewData + 1; |
drh | b765411 | 2008-01-12 12:48:07 +0000 | [diff] [blame] | 1708 | regRec = sqlite3GetTempReg(pParse); |
drh | 1db639c | 2008-01-17 02:36:28 +0000 | [diff] [blame] | 1709 | sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec); |
drh | 2adb878 | 2016-11-14 15:28:56 +0000 | [diff] [blame] | 1710 | if( !bAffinityDone ){ |
| 1711 | sqlite3TableAffinity(v, pTab, 0); |
| 1712 | sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol); |
| 1713 | } |
drh | 4794f73 | 2004-11-05 17:17:50 +0000 | [diff] [blame] | 1714 | if( pParse->nested ){ |
| 1715 | pik_flags = 0; |
| 1716 | }else{ |
danielk1977 | 94eb6a1 | 2005-12-15 15:22:08 +0000 | [diff] [blame] | 1717 | pik_flags = OPFLAG_NCHANGE; |
| 1718 | pik_flags |= (isUpdate?OPFLAG_ISUPDATE:OPFLAG_LASTROWID); |
drh | 4794f73 | 2004-11-05 17:17:50 +0000 | [diff] [blame] | 1719 | } |
drh | e4d9081 | 2007-03-29 05:51:49 +0000 | [diff] [blame] | 1720 | if( appendBias ){ |
| 1721 | pik_flags |= OPFLAG_APPEND; |
| 1722 | } |
danielk1977 | de63035 | 2009-05-04 11:42:29 +0000 | [diff] [blame] | 1723 | if( useSeekResult ){ |
| 1724 | pik_flags |= OPFLAG_USESEEKRESULT; |
| 1725 | } |
drh | 6934fc7 | 2013-10-31 15:37:49 +0000 | [diff] [blame] | 1726 | sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, regRec, regNewData); |
danielk1977 | 94eb6a1 | 2005-12-15 15:22:08 +0000 | [diff] [blame] | 1727 | if( !pParse->nested ){ |
drh | f14b7fb | 2016-12-07 21:35:55 +0000 | [diff] [blame^] | 1728 | sqlite3VdbeAppendP4(v, pTab, P4_TABLE); |
danielk1977 | 94eb6a1 | 2005-12-15 15:22:08 +0000 | [diff] [blame] | 1729 | } |
drh | b765411 | 2008-01-12 12:48:07 +0000 | [diff] [blame] | 1730 | sqlite3VdbeChangeP5(v, pik_flags); |
drh | 0ca3e24 | 2002-01-29 23:07:02 +0000 | [diff] [blame] | 1731 | } |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1732 | |
| 1733 | /* |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1734 | ** Allocate cursors for the pTab table and all its indices and generate |
| 1735 | ** code to open and initialized those cursors. |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 1736 | ** |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1737 | ** The cursor for the object that contains the complete data (normally |
| 1738 | ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT |
| 1739 | ** ROWID table) is returned in *piDataCur. The first index cursor is |
| 1740 | ** returned in *piIdxCur. The number of indices is returned. |
| 1741 | ** |
| 1742 | ** Use iBase as the first cursor (either the *piDataCur for rowid tables |
| 1743 | ** or the first index for WITHOUT ROWID tables) if it is non-negative. |
| 1744 | ** If iBase is negative, then allocate the next available cursor. |
| 1745 | ** |
| 1746 | ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur. |
| 1747 | ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range |
| 1748 | ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the |
| 1749 | ** pTab->pIndex list. |
drh | b6b4b79 | 2014-08-21 14:10:23 +0000 | [diff] [blame] | 1750 | ** |
| 1751 | ** If pTab is a virtual table, then this routine is a no-op and the |
| 1752 | ** *piDataCur and *piIdxCur values are left uninitialized. |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1753 | */ |
drh | aa9b896 | 2008-01-08 02:57:55 +0000 | [diff] [blame] | 1754 | int sqlite3OpenTableAndIndices( |
drh | 290c194 | 2004-08-21 17:54:45 +0000 | [diff] [blame] | 1755 | Parse *pParse, /* Parsing context */ |
| 1756 | Table *pTab, /* Table to be opened */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1757 | int op, /* OP_OpenRead or OP_OpenWrite */ |
drh | b89aeb6 | 2016-01-27 15:49:32 +0000 | [diff] [blame] | 1758 | u8 p5, /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1759 | int iBase, /* Use this for the table cursor, if there is one */ |
drh | 6a53499 | 2013-11-16 20:13:39 +0000 | [diff] [blame] | 1760 | u8 *aToOpen, /* If not NULL: boolean for each table and index */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1761 | int *piDataCur, /* Write the database source cursor number here */ |
| 1762 | int *piIdxCur /* Write the first index cursor number here */ |
drh | 290c194 | 2004-08-21 17:54:45 +0000 | [diff] [blame] | 1763 | ){ |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1764 | int i; |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 1765 | int iDb; |
drh | 6a53499 | 2013-11-16 20:13:39 +0000 | [diff] [blame] | 1766 | int iDataCur; |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1767 | Index *pIdx; |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 1768 | Vdbe *v; |
| 1769 | |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1770 | assert( op==OP_OpenRead || op==OP_OpenWrite ); |
dan | fd261ec | 2015-10-22 20:54:33 +0000 | [diff] [blame] | 1771 | assert( op==OP_OpenWrite || p5==0 ); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1772 | if( IsVirtual(pTab) ){ |
drh | b6b4b79 | 2014-08-21 14:10:23 +0000 | [diff] [blame] | 1773 | /* This routine is a no-op for virtual tables. Leave the output |
| 1774 | ** variables *piDataCur and *piIdxCur uninitialized so that valgrind |
| 1775 | ** can detect if they are used by mistake in the caller. */ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1776 | return 0; |
| 1777 | } |
drh | 4cbdda9 | 2006-06-14 19:00:20 +0000 | [diff] [blame] | 1778 | iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); |
| 1779 | v = sqlite3GetVdbe(pParse); |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1780 | assert( v!=0 ); |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1781 | if( iBase<0 ) iBase = pParse->nTab; |
drh | 6a53499 | 2013-11-16 20:13:39 +0000 | [diff] [blame] | 1782 | iDataCur = iBase++; |
| 1783 | if( piDataCur ) *piDataCur = iDataCur; |
| 1784 | if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){ |
| 1785 | sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op); |
drh | 6fbe41a | 2013-10-30 20:22:55 +0000 | [diff] [blame] | 1786 | }else{ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1787 | sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName); |
drh | 6fbe41a | 2013-10-30 20:22:55 +0000 | [diff] [blame] | 1788 | } |
drh | 6a53499 | 2013-11-16 20:13:39 +0000 | [diff] [blame] | 1789 | if( piIdxCur ) *piIdxCur = iBase; |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1790 | for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1791 | int iIdxCur = iBase++; |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 1792 | assert( pIdx->pSchema==pTab->pSchema ); |
dan | 61441c3 | 2016-08-26 12:00:50 +0000 | [diff] [blame] | 1793 | if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ |
| 1794 | if( piDataCur ) *piDataCur = iIdxCur; |
| 1795 | p5 = 0; |
| 1796 | } |
drh | 6a53499 | 2013-11-16 20:13:39 +0000 | [diff] [blame] | 1797 | if( aToOpen==0 || aToOpen[i+1] ){ |
| 1798 | sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb); |
| 1799 | sqlite3VdbeSetP4KeyInfo(pParse, pIdx); |
drh | b89aeb6 | 2016-01-27 15:49:32 +0000 | [diff] [blame] | 1800 | sqlite3VdbeChangeP5(v, p5); |
dan | 61441c3 | 2016-08-26 12:00:50 +0000 | [diff] [blame] | 1801 | VdbeComment((v, "%s", pIdx->zName)); |
drh | b89aeb6 | 2016-01-27 15:49:32 +0000 | [diff] [blame] | 1802 | } |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1803 | } |
drh | 26198bb | 2013-10-31 11:15:09 +0000 | [diff] [blame] | 1804 | if( iBase>pParse->nTab ) pParse->nTab = iBase; |
| 1805 | return i; |
drh | cd44690 | 2004-02-24 01:05:31 +0000 | [diff] [blame] | 1806 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1807 | |
drh | 91c58e2 | 2007-03-27 12:04:04 +0000 | [diff] [blame] | 1808 | |
| 1809 | #ifdef SQLITE_TEST |
| 1810 | /* |
| 1811 | ** The following global variable is incremented whenever the |
| 1812 | ** transfer optimization is used. This is used for testing |
| 1813 | ** purposes only - to make sure the transfer optimization really |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 1814 | ** is happening when it is supposed to. |
drh | 91c58e2 | 2007-03-27 12:04:04 +0000 | [diff] [blame] | 1815 | */ |
| 1816 | int sqlite3_xferopt_count; |
| 1817 | #endif /* SQLITE_TEST */ |
| 1818 | |
| 1819 | |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1820 | #ifndef SQLITE_OMIT_XFER_OPT |
| 1821 | /* |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1822 | ** Check to see if index pSrc is compatible as a source of data |
| 1823 | ** for index pDest in an insert transfer optimization. The rules |
| 1824 | ** for a compatible index: |
| 1825 | ** |
| 1826 | ** * The index is over the same set of columns |
| 1827 | ** * The same DESC and ASC markings occurs on all columns |
| 1828 | ** * The same onError processing (OE_Abort, OE_Ignore, etc) |
| 1829 | ** * The same collating sequence on each column |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1830 | ** * The index has the exact same WHERE clause |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1831 | */ |
| 1832 | static int xferCompatibleIndex(Index *pDest, Index *pSrc){ |
| 1833 | int i; |
| 1834 | assert( pDest && pSrc ); |
| 1835 | assert( pDest->pTable!=pSrc->pTable ); |
drh | bbbdc83 | 2013-10-22 18:01:40 +0000 | [diff] [blame] | 1836 | if( pDest->nKeyCol!=pSrc->nKeyCol ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1837 | return 0; /* Different number of columns */ |
| 1838 | } |
| 1839 | if( pDest->onError!=pSrc->onError ){ |
| 1840 | return 0; /* Different conflict resolution strategies */ |
| 1841 | } |
drh | bbbdc83 | 2013-10-22 18:01:40 +0000 | [diff] [blame] | 1842 | for(i=0; i<pSrc->nKeyCol; i++){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1843 | if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){ |
| 1844 | return 0; /* Different columns indexed */ |
| 1845 | } |
drh | 4b92f98 | 2015-09-29 17:20:14 +0000 | [diff] [blame] | 1846 | if( pSrc->aiColumn[i]==XN_EXPR ){ |
drh | 1f9ca2c | 2015-08-25 16:57:52 +0000 | [diff] [blame] | 1847 | assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 ); |
| 1848 | if( sqlite3ExprCompare(pSrc->aColExpr->a[i].pExpr, |
| 1849 | pDest->aColExpr->a[i].pExpr, -1)!=0 ){ |
| 1850 | return 0; /* Different expressions in the index */ |
| 1851 | } |
| 1852 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1853 | if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){ |
| 1854 | return 0; /* Different sort orders */ |
| 1855 | } |
drh | 0472af9 | 2015-12-30 15:18:16 +0000 | [diff] [blame] | 1856 | if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){ |
drh | 60a713c | 2008-01-21 16:22:45 +0000 | [diff] [blame] | 1857 | return 0; /* Different collating sequences */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1858 | } |
| 1859 | } |
drh | 619a130 | 2013-08-01 13:04:46 +0000 | [diff] [blame] | 1860 | if( sqlite3ExprCompare(pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){ |
drh | b2b9d3d | 2013-08-01 01:14:43 +0000 | [diff] [blame] | 1861 | return 0; /* Different WHERE clauses */ |
| 1862 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1863 | |
| 1864 | /* If no test above fails then the indices must be compatible */ |
| 1865 | return 1; |
| 1866 | } |
| 1867 | |
| 1868 | /* |
| 1869 | ** Attempt the transfer optimization on INSERTs of the form |
| 1870 | ** |
| 1871 | ** INSERT INTO tab1 SELECT * FROM tab2; |
| 1872 | ** |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 1873 | ** The xfer optimization transfers raw records from tab2 over to tab1. |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 1874 | ** Columns are not decoded and reassembled, which greatly improves |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 1875 | ** performance. Raw index records are transferred in the same way. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1876 | ** |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 1877 | ** The xfer optimization is only attempted if tab1 and tab2 are compatible. |
| 1878 | ** There are lots of rules for determining compatibility - see comments |
| 1879 | ** embedded in the code for details. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1880 | ** |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 1881 | ** This routine returns TRUE if the optimization is guaranteed to be used. |
| 1882 | ** Sometimes the xfer optimization will only work if the destination table |
| 1883 | ** is empty - a factor that can only be determined at run-time. In that |
| 1884 | ** case, this routine generates code for the xfer optimization but also |
| 1885 | ** does a test to see if the destination table is empty and jumps over the |
| 1886 | ** xfer optimization code if the test fails. In that case, this routine |
| 1887 | ** returns FALSE so that the caller will know to go ahead and generate |
| 1888 | ** an unoptimized transfer. This routine also returns FALSE if there |
| 1889 | ** is no chance that the xfer optimization can be applied. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1890 | ** |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 1891 | ** This optimization is particularly useful at making VACUUM run faster. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1892 | */ |
| 1893 | static int xferOptimization( |
| 1894 | Parse *pParse, /* Parser context */ |
| 1895 | Table *pDest, /* The table we are inserting into */ |
| 1896 | Select *pSelect, /* A SELECT statement to use as the data source */ |
| 1897 | int onError, /* How to handle constraint errors */ |
| 1898 | int iDbDest /* The database of pDest */ |
| 1899 | ){ |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 1900 | sqlite3 *db = pParse->db; |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1901 | ExprList *pEList; /* The result set of the SELECT */ |
| 1902 | Table *pSrc; /* The table in the FROM clause of SELECT */ |
| 1903 | Index *pSrcIdx, *pDestIdx; /* Source and destination indices */ |
| 1904 | struct SrcList_item *pItem; /* An element of pSelect->pSrc */ |
| 1905 | int i; /* Loop counter */ |
| 1906 | int iDbSrc; /* The database of pSrc */ |
| 1907 | int iSrc, iDest; /* Cursors from source and destination */ |
| 1908 | int addr1, addr2; /* Loop addresses */ |
drh | da475b8 | 2013-11-04 21:44:54 +0000 | [diff] [blame] | 1909 | int emptyDestTest = 0; /* Address of test for empty pDest */ |
| 1910 | int emptySrcTest = 0; /* Address of test for empty pSrc */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1911 | Vdbe *v; /* The VDBE we are building */ |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 1912 | int regAutoinc; /* Memory register used by AUTOINC */ |
drh | f33c9fa | 2007-04-10 18:17:55 +0000 | [diff] [blame] | 1913 | int destHasUniqueIdx = 0; /* True if pDest has a UNIQUE index */ |
drh | b765411 | 2008-01-12 12:48:07 +0000 | [diff] [blame] | 1914 | int regData, regRowid; /* Registers holding data and rowid */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1915 | |
| 1916 | if( pSelect==0 ){ |
| 1917 | return 0; /* Must be of the form INSERT INTO ... SELECT ... */ |
| 1918 | } |
dan | ebbf08a | 2014-01-18 08:27:02 +0000 | [diff] [blame] | 1919 | if( pParse->pWith || pSelect->pWith ){ |
| 1920 | /* Do not attempt to process this query if there are an WITH clauses |
| 1921 | ** attached to it. Proceeding may generate a false "no such table: xxx" |
| 1922 | ** error if pSelect reads from a CTE named "xxx". */ |
| 1923 | return 0; |
| 1924 | } |
danielk1977 | 2f886d1 | 2009-02-28 10:47:41 +0000 | [diff] [blame] | 1925 | if( sqlite3TriggerList(pParse, pDest) ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1926 | return 0; /* tab1 must not have triggers */ |
| 1927 | } |
| 1928 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
drh | 7d10d5a | 2008-08-20 16:35:10 +0000 | [diff] [blame] | 1929 | if( pDest->tabFlags & TF_Virtual ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1930 | return 0; /* tab1 must not be a virtual table */ |
| 1931 | } |
| 1932 | #endif |
| 1933 | if( onError==OE_Default ){ |
drh | e7224a0 | 2011-11-04 00:23:53 +0000 | [diff] [blame] | 1934 | if( pDest->iPKey>=0 ) onError = pDest->keyConf; |
| 1935 | if( onError==OE_Default ) onError = OE_Abort; |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1936 | } |
danielk1977 | 5ce240a | 2007-09-03 17:30:06 +0000 | [diff] [blame] | 1937 | assert(pSelect->pSrc); /* allocated even if there is no FROM clause */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1938 | if( pSelect->pSrc->nSrc!=1 ){ |
| 1939 | return 0; /* FROM clause must have exactly one term */ |
| 1940 | } |
| 1941 | if( pSelect->pSrc->a[0].pSelect ){ |
| 1942 | return 0; /* FROM clause cannot contain a subquery */ |
| 1943 | } |
| 1944 | if( pSelect->pWhere ){ |
| 1945 | return 0; /* SELECT may not have a WHERE clause */ |
| 1946 | } |
| 1947 | if( pSelect->pOrderBy ){ |
| 1948 | return 0; /* SELECT may not have an ORDER BY clause */ |
| 1949 | } |
drh | 8103b7d | 2007-02-24 13:23:51 +0000 | [diff] [blame] | 1950 | /* Do not need to test for a HAVING clause. If HAVING is present but |
| 1951 | ** there is no ORDER BY, we will get an error. */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1952 | if( pSelect->pGroupBy ){ |
| 1953 | return 0; /* SELECT may not have a GROUP BY clause */ |
| 1954 | } |
| 1955 | if( pSelect->pLimit ){ |
| 1956 | return 0; /* SELECT may not have a LIMIT clause */ |
| 1957 | } |
drh | 8103b7d | 2007-02-24 13:23:51 +0000 | [diff] [blame] | 1958 | assert( pSelect->pOffset==0 ); /* Must be so if pLimit==0 */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1959 | if( pSelect->pPrior ){ |
| 1960 | return 0; /* SELECT may not be a compound query */ |
| 1961 | } |
drh | 7d10d5a | 2008-08-20 16:35:10 +0000 | [diff] [blame] | 1962 | if( pSelect->selFlags & SF_Distinct ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1963 | return 0; /* SELECT may not be DISTINCT */ |
| 1964 | } |
| 1965 | pEList = pSelect->pEList; |
| 1966 | assert( pEList!=0 ); |
| 1967 | if( pEList->nExpr!=1 ){ |
| 1968 | return 0; /* The result set must have exactly one column */ |
| 1969 | } |
| 1970 | assert( pEList->a[0].pExpr ); |
drh | 1a1d3cd | 2015-11-19 16:33:31 +0000 | [diff] [blame] | 1971 | if( pEList->a[0].pExpr->op!=TK_ASTERISK ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1972 | return 0; /* The result set must be the special operator "*" */ |
| 1973 | } |
| 1974 | |
| 1975 | /* At this point we have established that the statement is of the |
| 1976 | ** correct syntactic form to participate in this optimization. Now |
| 1977 | ** we have to check the semantics. |
| 1978 | */ |
| 1979 | pItem = pSelect->pSrc->a; |
dan | 41fb5cd | 2012-10-04 19:33:00 +0000 | [diff] [blame] | 1980 | pSrc = sqlite3LocateTableItem(pParse, 0, pItem); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1981 | if( pSrc==0 ){ |
| 1982 | return 0; /* FROM clause does not contain a real table */ |
| 1983 | } |
| 1984 | if( pSrc==pDest ){ |
| 1985 | return 0; /* tab1 and tab2 may not be the same table */ |
| 1986 | } |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 1987 | if( HasRowid(pDest)!=HasRowid(pSrc) ){ |
| 1988 | return 0; /* source and destination must both be WITHOUT ROWID or not */ |
| 1989 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1990 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
drh | 7d10d5a | 2008-08-20 16:35:10 +0000 | [diff] [blame] | 1991 | if( pSrc->tabFlags & TF_Virtual ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 1992 | return 0; /* tab2 must not be a virtual table */ |
| 1993 | } |
| 1994 | #endif |
| 1995 | if( pSrc->pSelect ){ |
| 1996 | return 0; /* tab2 may not be a view */ |
| 1997 | } |
| 1998 | if( pDest->nCol!=pSrc->nCol ){ |
| 1999 | return 0; /* Number of columns must be the same in tab1 and tab2 */ |
| 2000 | } |
| 2001 | if( pDest->iPKey!=pSrc->iPKey ){ |
| 2002 | return 0; /* Both tables must have the same INTEGER PRIMARY KEY */ |
| 2003 | } |
| 2004 | for(i=0; i<pDest->nCol; i++){ |
dan | 9940e2a | 2014-04-26 14:07:57 +0000 | [diff] [blame] | 2005 | Column *pDestCol = &pDest->aCol[i]; |
| 2006 | Column *pSrcCol = &pSrc->aCol[i]; |
dan | ba68f8f | 2015-11-19 16:46:46 +0000 | [diff] [blame] | 2007 | #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS |
dan | aaea314 | 2015-11-19 18:09:05 +0000 | [diff] [blame] | 2008 | if( (db->flags & SQLITE_Vacuum)==0 |
| 2009 | && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN |
| 2010 | ){ |
dan | ba68f8f | 2015-11-19 16:46:46 +0000 | [diff] [blame] | 2011 | return 0; /* Neither table may have __hidden__ columns */ |
| 2012 | } |
| 2013 | #endif |
dan | 9940e2a | 2014-04-26 14:07:57 +0000 | [diff] [blame] | 2014 | if( pDestCol->affinity!=pSrcCol->affinity ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2015 | return 0; /* Affinity must be the same on all columns */ |
| 2016 | } |
drh | 0472af9 | 2015-12-30 15:18:16 +0000 | [diff] [blame] | 2017 | if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2018 | return 0; /* Collating sequence must be the same on all columns */ |
| 2019 | } |
dan | 9940e2a | 2014-04-26 14:07:57 +0000 | [diff] [blame] | 2020 | if( pDestCol->notNull && !pSrcCol->notNull ){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2021 | return 0; /* tab2 must be NOT NULL if tab1 is */ |
| 2022 | } |
drh | 453e026 | 2014-04-26 17:52:08 +0000 | [diff] [blame] | 2023 | /* Default values for second and subsequent columns need to match. */ |
drh | 94fa9c4 | 2016-02-27 21:16:04 +0000 | [diff] [blame] | 2024 | if( i>0 ){ |
| 2025 | assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN ); |
| 2026 | assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN ); |
| 2027 | if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0) |
| 2028 | || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken, |
| 2029 | pSrcCol->pDflt->u.zToken)!=0) |
| 2030 | ){ |
| 2031 | return 0; /* Default values must be the same for all columns */ |
| 2032 | } |
dan | 9940e2a | 2014-04-26 14:07:57 +0000 | [diff] [blame] | 2033 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2034 | } |
| 2035 | for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ |
drh | 5f1d1d9 | 2014-07-31 22:59:04 +0000 | [diff] [blame] | 2036 | if( IsUniqueIndex(pDestIdx) ){ |
drh | f33c9fa | 2007-04-10 18:17:55 +0000 | [diff] [blame] | 2037 | destHasUniqueIdx = 1; |
| 2038 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2039 | for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){ |
| 2040 | if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; |
| 2041 | } |
| 2042 | if( pSrcIdx==0 ){ |
| 2043 | return 0; /* pDestIdx has no corresponding index in pSrc */ |
| 2044 | } |
| 2045 | } |
drh | 7fc2f41 | 2007-03-29 00:08:24 +0000 | [diff] [blame] | 2046 | #ifndef SQLITE_OMIT_CHECK |
drh | 619a130 | 2013-08-01 13:04:46 +0000 | [diff] [blame] | 2047 | if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){ |
drh | 8103b7d | 2007-02-24 13:23:51 +0000 | [diff] [blame] | 2048 | return 0; /* Tables have different CHECK constraints. Ticket #2252 */ |
| 2049 | } |
drh | 7fc2f41 | 2007-03-29 00:08:24 +0000 | [diff] [blame] | 2050 | #endif |
drh | 713de34 | 2011-04-24 22:56:07 +0000 | [diff] [blame] | 2051 | #ifndef SQLITE_OMIT_FOREIGN_KEY |
| 2052 | /* Disallow the transfer optimization if the destination table constains |
| 2053 | ** any foreign key constraints. This is more restrictive than necessary. |
| 2054 | ** But the main beneficiary of the transfer optimization is the VACUUM |
| 2055 | ** command, and the VACUUM command disables foreign key constraints. So |
| 2056 | ** the extra complication to make this rule less restrictive is probably |
| 2057 | ** not worth the effort. Ticket [6284df89debdfa61db8073e062908af0c9b6118e] |
| 2058 | */ |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2059 | if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){ |
drh | 713de34 | 2011-04-24 22:56:07 +0000 | [diff] [blame] | 2060 | return 0; |
| 2061 | } |
| 2062 | #endif |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2063 | if( (db->flags & SQLITE_CountRows)!=0 ){ |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 2064 | return 0; /* xfer opt does not play well with PRAGMA count_changes */ |
dan | 1696124 | 2011-09-30 12:01:01 +0000 | [diff] [blame] | 2065 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2066 | |
drh | ccdf1ba | 2011-11-04 14:36:02 +0000 | [diff] [blame] | 2067 | /* If we get this far, it means that the xfer optimization is at |
| 2068 | ** least a possibility, though it might only work if the destination |
| 2069 | ** table (tab1) is initially empty. |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2070 | */ |
drh | dd73521 | 2007-02-24 13:53:05 +0000 | [diff] [blame] | 2071 | #ifdef SQLITE_TEST |
| 2072 | sqlite3_xferopt_count++; |
| 2073 | #endif |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2074 | iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2075 | v = sqlite3GetVdbe(pParse); |
drh | f53e9b5 | 2007-08-29 13:45:58 +0000 | [diff] [blame] | 2076 | sqlite3CodeVerifySchema(pParse, iDbSrc); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2077 | iSrc = pParse->nTab++; |
| 2078 | iDest = pParse->nTab++; |
drh | 6a288a3 | 2008-01-07 19:20:24 +0000 | [diff] [blame] | 2079 | regAutoinc = autoIncBegin(pParse, iDbDest, pDest); |
drh | b765411 | 2008-01-12 12:48:07 +0000 | [diff] [blame] | 2080 | regData = sqlite3GetTempReg(pParse); |
| 2081 | regRowid = sqlite3GetTempReg(pParse); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2082 | sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite); |
dan | 427ebba | 2013-11-05 16:39:31 +0000 | [diff] [blame] | 2083 | assert( HasRowid(pDest) || destHasUniqueIdx ); |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2084 | if( (db->flags & SQLITE_Vacuum)==0 && ( |
| 2085 | (pDest->iPKey<0 && pDest->pIndex!=0) /* (1) */ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2086 | || destHasUniqueIdx /* (2) */ |
| 2087 | || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */ |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2088 | )){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2089 | /* In some circumstances, we are able to run the xfer optimization |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2090 | ** only if the destination table is initially empty. Unless the |
| 2091 | ** SQLITE_Vacuum flag is set, this block generates code to make |
| 2092 | ** that determination. If SQLITE_Vacuum is set, then the destination |
| 2093 | ** table is always empty. |
| 2094 | ** |
| 2095 | ** Conditions under which the destination must be empty: |
drh | bd36ba6 | 2007-03-31 13:00:26 +0000 | [diff] [blame] | 2096 | ** |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2097 | ** (1) There is no INTEGER PRIMARY KEY but there are indices. |
| 2098 | ** (If the destination is not initially empty, the rowid fields |
| 2099 | ** of index entries might need to change.) |
| 2100 | ** |
| 2101 | ** (2) The destination has a unique index. (The xfer optimization |
drh | bd36ba6 | 2007-03-31 13:00:26 +0000 | [diff] [blame] | 2102 | ** is unable to test uniqueness.) |
| 2103 | ** |
| 2104 | ** (3) onError is something other than OE_Abort and OE_Rollback. |
drh | f33c9fa | 2007-04-10 18:17:55 +0000 | [diff] [blame] | 2105 | */ |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2106 | addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v); |
drh | 2991ba0 | 2015-09-02 18:19:00 +0000 | [diff] [blame] | 2107 | emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto); |
drh | 66a5167 | 2008-01-03 00:01:23 +0000 | [diff] [blame] | 2108 | sqlite3VdbeJumpHere(v, addr1); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2109 | } |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2110 | if( HasRowid(pSrc) ){ |
drh | c9b9dea | 2016-11-15 02:46:39 +0000 | [diff] [blame] | 2111 | u8 insFlags; |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2112 | sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2113 | emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2114 | if( pDest->iPKey>=0 ){ |
| 2115 | addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); |
| 2116 | addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2117 | VdbeCoverage(v); |
drh | f9c8ce3 | 2013-11-05 13:33:55 +0000 | [diff] [blame] | 2118 | sqlite3RowidConstraint(pParse, onError, pDest); |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2119 | sqlite3VdbeJumpHere(v, addr2); |
| 2120 | autoIncStep(pParse, regAutoinc, regRowid); |
| 2121 | }else if( pDest->pIndex==0 ){ |
| 2122 | addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid); |
| 2123 | }else{ |
| 2124 | addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); |
| 2125 | assert( (pDest->tabFlags & TF_Autoincrement)==0 ); |
| 2126 | } |
| 2127 | sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData); |
drh | c9b9dea | 2016-11-15 02:46:39 +0000 | [diff] [blame] | 2128 | if( db->flags & SQLITE_Vacuum ){ |
| 2129 | sqlite3VdbeAddOp3(v, OP_Last, iDest, 0, -1); |
| 2130 | insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID| |
| 2131 | OPFLAG_APPEND|OPFLAG_USESEEKRESULT; |
| 2132 | }else{ |
| 2133 | insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND; |
| 2134 | } |
drh | 9b34abe | 2016-01-16 15:12:35 +0000 | [diff] [blame] | 2135 | sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid, |
drh | 20f272c | 2016-01-20 11:33:37 +0000 | [diff] [blame] | 2136 | (char*)pDest, P4_TABLE); |
drh | c9b9dea | 2016-11-15 02:46:39 +0000 | [diff] [blame] | 2137 | sqlite3VdbeChangeP5(v, insFlags); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2138 | sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v); |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2139 | sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); |
| 2140 | sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); |
drh | 95bad4c | 2007-03-28 18:04:10 +0000 | [diff] [blame] | 2141 | }else{ |
drh | da475b8 | 2013-11-04 21:44:54 +0000 | [diff] [blame] | 2142 | sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName); |
| 2143 | sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName); |
drh | 95bad4c | 2007-03-28 18:04:10 +0000 | [diff] [blame] | 2144 | } |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2145 | for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ |
drh | 41b9ca2 | 2015-07-28 18:53:37 +0000 | [diff] [blame] | 2146 | u8 idxInsFlags = 0; |
drh | 1b7ecbb | 2009-05-03 01:00:59 +0000 | [diff] [blame] | 2147 | for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){ |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2148 | if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; |
| 2149 | } |
| 2150 | assert( pSrcIdx ); |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 2151 | sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc); |
| 2152 | sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx); |
drh | d4e70eb | 2008-01-02 00:34:36 +0000 | [diff] [blame] | 2153 | VdbeComment((v, "%s", pSrcIdx->zName)); |
drh | 2ec2fb2 | 2013-11-06 19:59:23 +0000 | [diff] [blame] | 2154 | sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest); |
| 2155 | sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx); |
dan | 5988572 | 2013-10-04 18:17:18 +0000 | [diff] [blame] | 2156 | sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR); |
danielk1977 | 207872a | 2008-01-03 07:54:23 +0000 | [diff] [blame] | 2157 | VdbeComment((v, "%s", pDestIdx->zName)); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2158 | addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); |
drh | 9057fc7 | 2016-11-25 19:32:32 +0000 | [diff] [blame] | 2159 | sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData); |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2160 | if( db->flags & SQLITE_Vacuum ){ |
| 2161 | /* This INSERT command is part of a VACUUM operation, which guarantees |
| 2162 | ** that the destination table is empty. If all indexed columns use |
| 2163 | ** collation sequence BINARY, then it can also be assumed that the |
| 2164 | ** index will be populated by inserting keys in strictly sorted |
| 2165 | ** order. In this case, instead of seeking within the b-tree as part |
| 2166 | ** of every OP_IdxInsert opcode, an OP_Last is added before the |
| 2167 | ** OP_IdxInsert to seek to the point within the b-tree where each key |
| 2168 | ** should be inserted. This is faster. |
| 2169 | ** |
| 2170 | ** If any of the indexed columns use a collation sequence other than |
| 2171 | ** BINARY, this optimization is disabled. This is because the user |
| 2172 | ** might change the definition of a collation sequence and then run |
| 2173 | ** a VACUUM command. In that case keys may not be written in strictly |
| 2174 | ** sorted order. */ |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2175 | for(i=0; i<pSrcIdx->nColumn; i++){ |
drh | f19aa5f | 2015-12-30 16:51:20 +0000 | [diff] [blame] | 2176 | const char *zColl = pSrcIdx->azColl[i]; |
| 2177 | assert( sqlite3_stricmp(sqlite3StrBINARY, zColl)!=0 |
| 2178 | || sqlite3StrBINARY==zColl ); |
| 2179 | if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break; |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2180 | } |
| 2181 | if( i==pSrcIdx->nColumn ){ |
drh | 41b9ca2 | 2015-07-28 18:53:37 +0000 | [diff] [blame] | 2182 | idxInsFlags = OPFLAG_USESEEKRESULT; |
dan | e34162b | 2015-04-01 18:20:25 +0000 | [diff] [blame] | 2183 | sqlite3VdbeAddOp3(v, OP_Last, iDest, 0, -1); |
| 2184 | } |
| 2185 | } |
drh | 41b9ca2 | 2015-07-28 18:53:37 +0000 | [diff] [blame] | 2186 | if( !HasRowid(pSrc) && pDestIdx->idxType==2 ){ |
| 2187 | idxInsFlags |= OPFLAG_NCHANGE; |
| 2188 | } |
drh | 9b4eaeb | 2016-11-09 00:10:33 +0000 | [diff] [blame] | 2189 | sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData); |
| 2190 | sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND); |
drh | 688852a | 2014-02-17 22:40:43 +0000 | [diff] [blame] | 2191 | sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2192 | sqlite3VdbeJumpHere(v, addr1); |
drh | 5554827 | 2013-10-23 16:03:07 +0000 | [diff] [blame] | 2193 | sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); |
| 2194 | sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2195 | } |
drh | aceb31b | 2014-02-08 01:40:27 +0000 | [diff] [blame] | 2196 | if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest); |
drh | b765411 | 2008-01-12 12:48:07 +0000 | [diff] [blame] | 2197 | sqlite3ReleaseTempReg(pParse, regRowid); |
| 2198 | sqlite3ReleaseTempReg(pParse, regData); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2199 | if( emptyDestTest ){ |
drh | 1dd518c | 2016-10-03 02:59:33 +0000 | [diff] [blame] | 2200 | sqlite3AutoincrementEnd(pParse); |
drh | 66a5167 | 2008-01-03 00:01:23 +0000 | [diff] [blame] | 2201 | sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2202 | sqlite3VdbeJumpHere(v, emptyDestTest); |
drh | 66a5167 | 2008-01-03 00:01:23 +0000 | [diff] [blame] | 2203 | sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); |
drh | 9d9cf22 | 2007-02-13 15:01:11 +0000 | [diff] [blame] | 2204 | return 0; |
| 2205 | }else{ |
| 2206 | return 1; |
| 2207 | } |
| 2208 | } |
| 2209 | #endif /* SQLITE_OMIT_XFER_OPT */ |