diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 9f30970af..8fefed830 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -43,7 +43,7 @@ ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. ** -** $Id: vdbe.c,v 1.521 2006/01/10 18:44:08 drh Exp $ +** $Id: vdbe.c,v 1.522 2006/01/10 19:45:49 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -3653,9 +3653,9 @@ case OP_Next: { /* no-push */ /* Opcode: IdxInsert P1 * * ** -** The top of the stack holds a SQL index key made using the -** MakeIdxRec instruction. This opcode writes that key into the -** index P1. Data for the entry is nil. +** The top of the stack holds a SQL index key made using either the +** MakeIdxRec or MakeRecord instructions. This opcode writes that key +** into the index P1. Data for the entry is nil. ** ** This instruction only works for indices. The equivalent instruction ** for tables is OP_Insert. @@ -3684,7 +3684,8 @@ case OP_IdxInsert: { /* no-push */ /* Opcode: IdxDelete P1 * * ** -** The top of the stack is an index key built using the MakeIdxRec opcode. +** The top of the stack is an index key built using the either the +** MakeIdxRec or MakeRecord opcodes. ** This opcode removes that entry from the index. */ case OP_IdxDelete: { /* no-push */ |