aboutsummaryrefslogtreecommitdiff
path: root/src/insert.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-11-06 02:36:04 +0000
committerdrh <drh@noemail.net>2013-11-06 02:36:04 +0000
commit4ad8b90244c32cc75cc515ad77b35ff6733cc521 (patch)
treef96eb9d4e0f1d67a6b9fd17cf7c6558fb8a08e23 /src/insert.c
parent1282609b02f38c1c9ef5024e6a93fdc191a1b7cc (diff)
downloadsqlite-4ad8b90244c32cc75cc515ad77b35ff6733cc521.tar.gz
sqlite-4ad8b90244c32cc75cc515ad77b35ff6733cc521.zip
Remove an unused variable.
FossilOrigin-Name: e9c1e419b7227d86f2e1882cebf360116cdf1a13
Diffstat (limited to 'src/insert.c')
-rw-r--r--src/insert.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/insert.c b/src/insert.c
index ff3da9482..857585ff7 100644
--- a/src/insert.c
+++ b/src/insert.c
@@ -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);