]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Adjust comments in vdbe.c to use OP_MakeRecord instead of the obsolete
authordrh <drh@noemail.net>
Sun, 1 Feb 2009 00:29:56 +0000 (00:29 +0000)
committerdrh <drh@noemail.net>
Sun, 1 Feb 2009 00:29:56 +0000 (00:29 +0000)
OP_MakeIdxRec.  Ticket #3619. (CVS 6225)

FossilOrigin-Name: 0d2abbbff5d9e12e2382ed201bf1648c5918c1c0

manifest
manifest.uuid
src/vdbe.c

index 61907458367c2e4490e6bcef7d57c661a9623a78..f0e692751eb6db9f86f53c6de747c90f791c9d66 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sa\snew\stest\scommand,\ssqlite3_mprintf_long,\sfor\stesting\sthe\sbehavior\nof\s"long\sinteger"\sprintf\sformatting.\s\sTicket\s#3621.\s(CVS\s6224)
-D 2009-02-01T00:21:10
+C Adjust\scomments\sin\svdbe.c\sto\suse\sOP_MakeRecord\sinstead\sof\sthe\sobsolete\nOP_MakeIdxRec.\s\sTicket\s#3619.\s(CVS\s6225)
+D 2009-02-01T00:29:57
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 3871d308188cefcb7c5ab20da4c7b6aad023bc52
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -198,7 +198,7 @@ F src/update.c 8c4925f9ca664effc8a1faaad67449d2074567b1
 F src/utf.c 1da9c832dba0fa8f865b5b902d93f420a1ee4245
 F src/util.c f1ac1bcd3ec5e3300982031504659b6f9435de33
 F src/vacuum.c b78c2bfdefc1b1d9aa5d82d57c333c5fde7be5a6
-F src/vdbe.c e14b330e7b9b27dd9eb1595f47aedea30acfd521
+F src/vdbe.c 81120d5a5ba2d93eb7d7f66e814bbc811305daa2
 F src/vdbe.h 03516f28bf5aca00a53c4dccd6c313f96adb94f6
 F src/vdbeInt.h 5530e45fc64c1572f123aca384096e1b84cf834b
 F src/vdbeapi.c 85c33cfbfa56249cbe627831610afafba754477d
@@ -693,7 +693,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 3890985ca6750584876596fd0a124f47ee032075
-R 01401eed13c10e23eb0e903de34beac8
+P 3ba1a17b1306bc61b9861ec8d3b239e16a3081ba
+R 90eddc956187936681160cacf59e095a
 U drh
-Z cd9d69a9bd245a1f043eb0c9f0fc7010
+Z 8c709cf1d1e6f4628aafbad8fe6d0390
index e7dc28469ddafa46de2123b3f94c8c5ec1d752bd..c56e95e6f38d2af8bee7e5cce6ef696cc8c608a1 100644 (file)
@@ -1 +1 @@
-3ba1a17b1306bc61b9861ec8d3b239e16a3081ba
\ No newline at end of file
+0d2abbbff5d9e12e2382ed201bf1648c5918c1c0
\ No newline at end of file
index 9fe0e823c1b8dd42a520e45fd31371d64cfe0fb9..b6da22237ceda1cf3ffaf9f91ee02a537c6315cd 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.812 2009/01/20 16:53:41 danielk1977 Exp $
+** $Id: vdbe.c,v 1.813 2009/02/01 00:29:57 drh Exp $
 */
 #include "sqliteInt.h"
 #include "vdbeInt.h"
@@ -4024,7 +4024,7 @@ case OP_Next: {        /* jump */
 /* Opcode: IdxInsert P1 P2 P3 * *
 **
 ** Register P2 holds a SQL index key made using the
-** MakeIdxRec instructions.  This opcode writes that key
+** MakeRecord instructions.  This opcode writes that key
 ** into the index P1.  Data for the entry is nil.
 **
 ** P3 is a flag that provides a hint to the b-tree layer that this
@@ -4091,7 +4091,7 @@ case OP_IdxDelete: {
 ** 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, MakeIdxRec.
+** See also: Rowid, MakeRecord.
 */
 case OP_IdxRowid: {              /* out2-prerelease */
   int i = pOp->p1;