]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix opcode name in comments. No changes to code. (CVS 2907)
authordrh <drh@noemail.net>
Tue, 10 Jan 2006 18:44:08 +0000 (18:44 +0000)
committerdrh <drh@noemail.net>
Tue, 10 Jan 2006 18:44:08 +0000 (18:44 +0000)
FossilOrigin-Name: 511ac9db12ad84bb02d84568b75fc65cef661e88

manifest
manifest.uuid
src/vdbe.c

index d61050477e05de44cdf10598506b68f88ab0d8b2..f0f05baed6f18e82cefe87fcccb7ee9eab777877 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Initialize\svariables\sin\smalloc3.test\s(was\scausing\serror\sin\sall.test).\s(CVS\s2906)
-D 2006-01-10T18:27:42
+C Fix\sopcode\sname\sin\scomments.\s\sNo\schanges\sto\scode.\s(CVS\s2907)
+D 2006-01-10T18:44:08
 F Makefile.in ab3ffd8d469cef4477257169b82810030a6bb967
 F Makefile.linux-gcc aee18d8a05546dcf1888bd4547e442008a49a092
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -87,7 +87,7 @@ F src/update.c cd8ad5bb1a29f2056347481308fca4a59f2f4764
 F src/utf.c b7bffac4260177ae7f83c01d025fe0f5ed70ce71
 F src/util.c 5d5792d4a4dda20d70fdfb973ed8a5ed71fea98c
 F src/vacuum.c f5a068096b22fad438bf1f1cf69ccb7f9e8cc7fb
-F src/vdbe.c 490b9b48a8f616b9a15b0151b86212b0fab311b2
+F src/vdbe.c 8500eee6b75f4a63e8828bc32b1bdb959ecf9e0f
 F src/vdbe.h 8729a4ee16ff9aeab2af9667df3cf300ff978e13
 F src/vdbeInt.h 5451cf71f229e366ac543607c0a17f36e5737ea9
 F src/vdbeapi.c 6d20e92de62b90ae27aeea3a7b18653734b0b1cb
@@ -340,7 +340,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P b5bedb2a9f349b32acbd0356c61cdc30fd474eca
-R e356281e0444dd47ecc885d1fdf2f9be
-U danielk1977
-Z 5907ff534288589368a2d11c9d2f4694
+P 16a8172a617d4ff739660ae67d3e381b2dea68e6
+R 94607d68601d1d53040455673ac24923
+U drh
+Z 09b4ea26864446b9103a8755a4ebe808
index 519e534b621f3fe1ba974d902a63c1a978518c41..bc36677781667b96c7c548c941cb4d2bed062ec5 100644 (file)
@@ -1 +1 @@
-16a8172a617d4ff739660ae67d3e381b2dea68e6
\ No newline at end of file
+511ac9db12ad84bb02d84568b75fc65cef661e88
\ No newline at end of file
index 10873bc392a849032110d8d4aed2a065d2a5038f..9f30970afa0b7b6d75f034efad35ab521711087d 100644 (file)
@@ -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.520 2006/01/09 16:12:05 danielk1977 Exp $
+** $Id: vdbe.c,v 1.521 2006/01/10 18:44:08 drh Exp $
 */
 #include "sqliteInt.h"
 #include "os.h"
@@ -2927,7 +2927,7 @@ case OP_Found: {        /* no-push */
 **
 ** The top of the stack is an integer record number.  Call this
 ** record number R.  The next on the stack is an index key created
-** using MakeIdxKey.  Call it K.  This instruction pops R from the
+** using MakeIdxRec.  Call it K.  This instruction pops R from the
 ** stack but it leaves K unchanged.
 **
 ** P1 is an index.  So it has no data and its key consists of a
@@ -3654,7 +3654,7 @@ case OP_Next: {        /* no-push */
 /* Opcode: IdxInsert P1 * *
 **
 ** The top of the stack holds a SQL index key made using the
-** MakeIdxKey instruction.  This opcode writes that key into the
+** MakeIdxRec instruction.  This opcode writes that key into the
 ** index P1.  Data for the entry is nil.
 **
 ** This instruction only works for indices.  The equivalent instruction
@@ -3684,7 +3684,7 @@ case OP_IdxInsert: {        /* no-push */
 
 /* Opcode: IdxDelete P1 * *
 **
-** The top of the stack is an index key built using the MakeIdxKey opcode.
+** The top of the stack is an index key built using the MakeIdxRec opcode.
 ** This opcode removes that entry from the index.
 */
 case OP_IdxDelete: {        /* no-push */
@@ -3715,7 +3715,7 @@ case OP_IdxDelete: {        /* no-push */
 ** the end of the index key pointed to by cursor P1.  This integer should be
 ** the rowid of the table entry to which this index entry points.
 **
-** See also: Rowid, MakeIdxKey.
+** See also: Rowid, MakeIdxRec.
 */
 case OP_IdxRowid: {
   int i = pOp->p1;
@@ -3828,7 +3828,7 @@ case OP_IdxGE: {        /* no-push */
 /* Opcode: IdxIsNull P1 P2 *
 **
 ** The top of the stack contains an index entry such as might be generated
-** by the MakeIdxKey opcode.  This routine looks at the first P1 fields of
+** by the MakeIdxRec opcode.  This routine looks at the first P1 fields of
 ** that key.  If any of the first P1 fields are NULL, then a jump is made
 ** to address P2.  Otherwise we fall straight through.
 **