1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Remove an unused variable.

FossilOrigin-Name: e9c1e419b7227d86f2e1882cebf360116cdf1a13
This commit is contained in:
drh
2013-11-06 02:36:04 +00:00
parent 1282609b02
commit 4ad8b90244
3 changed files with 7 additions and 8 deletions

View File

@@ -1529,7 +1529,6 @@ void sqlite3GenerateConstraintChecks(
** For a UNIQUE index, only conflict if the PRIMARY KEY values
** of the matched index row are different from the original PRIMARY
** KEY values of this row before the update. */
char *p4;
int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol;
int op = OP_Ne;
int regCmp = (pIdx->autoIndex==2 ? regIdx : regR);