Incremental update. We are in the middle of modifying the index system
to support range queries without doing a complete table scan. (CVS 303)
FossilOrigin-Name: e6ca23fa4569bc33065bf57ce7ce6132cd6a9de0
diff --git a/src/insert.c b/src/insert.c
index 8f93d5c..50e0957 100644
--- a/src/insert.c
+++ b/src/insert.c
@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle INSERT statements in SQLite.
**
-** $Id: insert.c,v 1.24 2001/10/15 00:44:36 drh Exp $
+** $Id: insert.c,v 1.25 2001/11/07 14:22:00 drh Exp $
*/
#include "sqliteInt.h"
@@ -231,7 +231,7 @@
}
}
sqliteVdbeAddOp(v, OP_MakeIdxKey, pIdx->nColumn, 0);
- sqliteVdbeAddOp(v, OP_PutIdx, idx+base, pIdx->isUnique);
+ sqliteVdbeAddOp(v, OP_IdxPut, idx+base, pIdx->isUnique);
}