Fix a typo in the header comment to the MakeRecord opcode so that the

documentation generator will actually see the opcode description.
Ticket #1001. (CVS 2102)

FossilOrigin-Name: 33c9b647aa70d1a9dab0e999daf853aa71d7df37
This commit is contained in:
drh 2004-11-15 23:42:27 +00:00
parent 7b4e7268f1
commit 670fb032ab
3 changed files with 14 additions and 15 deletions

View File

@ -1,5 +1,5 @@
C Add\stest\scases\sfor\sescape\scharacters\sin\sthe\sGLOB\soperator.\s(CVS\s2101)
D 2004-11-15T01:40:48
C Fix\sa\stypo\sin\sthe\sheader\scomment\sto\sthe\sMakeRecord\sopcode\sso\sthat\sthe\ndocumentation\sgenerator\swill\sactually\ssee\sthe\sopcode\sdescription.\nTicket\s#1001.\s(CVS\s2102)
D 2004-11-15T23:42:28
F Makefile.in e747bb5ba34ccbdd81f79dcf1b2b33c02817c21d
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@ -75,7 +75,7 @@ F src/update.c 3cc67f6053495152e82a6a48c93ed331218e936e
F src/utf.c e45ce11be6922408cd381561721f6cca7d3b992a
F src/util.c 005fdf2d008f3429d081766ad6098fdd86d8d8e6
F src/vacuum.c ecb4a2c6f1ac5cc9b394dc64d3bb14ca650c4f60
F src/vdbe.c ab76044e19a2f1ebcff1b86e72620d2a2d323337
F src/vdbe.c aba1ca8278fcce3ec0e01782631bc2751c44adf8
F src/vdbe.h 067ca8d6750ba4f69a50284765e5883dee860181
F src/vdbeInt.h 6017100adff362b8dfa37a69e3f1431f084bfa5b
F src/vdbeapi.c 74be7f96c0a1ac275661f8b32276ac521d9ce37c
@ -258,7 +258,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl fdacb0ba2d39831e8a6240d05a490026ad4c4e4c
P 98c7a55478f7c465b219edc1a33eee222586fd65
R 32cec8d8d0b03c9298740976ddab13ec
P bb2d9ff881e4c6fe0cf60a13609d39426346fa9d
R 2be6540265abc47343fc0c7a5238dac8
U drh
Z 556e7e6a41172f441361ab3236982ec5
Z 7898d7d96ac0e92187c4488997a79889

View File

@ -1 +1 @@
bb2d9ff881e4c6fe0cf60a13609d39426346fa9d
33c9b647aa70d1a9dab0e999daf853aa71d7df37

View 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.428 2004/11/14 21:56:30 drh Exp $
** $Id: vdbe.c,v 1.429 2004/11/15 23:42:28 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@ -1914,7 +1914,7 @@ case OP_Column: {
break;
}
/* Opcode MakeRecord P1 P2 P3
/* Opcode: MakeRecord P1 P2 P3
**
** Convert the top abs(P1) entries of the stack into a single entry
** suitable for use as a data record in a database table or as a key
@ -1939,12 +1939,11 @@ case OP_Column: {
** field of the index key (i.e. the first character of P3 corresponds to the
** lowest element on the stack).
**
** Character Column affinity
** ------------------------------
** 'n' NUMERIC
** 'i' INTEGER
** 't' TEXT
** 'o' NONE
** The mapping from character to affinity is as follows:
** 'n' = NUMERIC.
** 'i' = INTEGER.
** 't' = TEXT.
** 'o' = NONE.
**
** If P3 is NULL then all index fields have the affinity NONE.
*/