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