-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
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
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
** 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"
/* 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
** 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;