1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

More comment updates. No changes to code.

FossilOrigin-Name: be24fbc22106e508975e316abe0471edd3833291
This commit is contained in:
mistachkin
2014-02-07 03:28:02 +00:00
parent 0fd613542c
commit 21a919f630
3 changed files with 14 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
C Update\scomments\sin\svdbe.c.\s\sNo\schanges\sto\scode. C More\scomment\supdates.\s\sNo\schanges\sto\scode.
D 2014-02-07T02:29:45.685 D 2014-02-07T03:28:02.783
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81 F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -280,7 +280,7 @@ F src/update.c a7df6fffce6bfedc578fda6136dd33e34a63f8ee
F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269 F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269
F src/util.c 15ac2627f548f5481d0d7e6c4eb67be673027695 F src/util.c 15ac2627f548f5481d0d7e6c4eb67be673027695
F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179
F src/vdbe.c 962cb7aad1a89ecc2b0cb879d7021c591ddc9a31 F src/vdbe.c 575189caf33bc3f2b9557f420e9b815afcd5ace8
F src/vdbe.h e6c4c610fcabad4fa80ebb1efc6822a9367e2b26 F src/vdbe.h e6c4c610fcabad4fa80ebb1efc6822a9367e2b26
F src/vdbeInt.h 42db251e9f863401ff847b90d5fe1614c89a6a56 F src/vdbeInt.h 42db251e9f863401ff847b90d5fe1614c89a6a56
F src/vdbeapi.c ce4e68ea4842cc6081046f533d088dcf01d247ad F src/vdbeapi.c ce4e68ea4842cc6081046f533d088dcf01d247ad
@@ -1152,7 +1152,7 @@ F tool/vdbe-compress.tcl 0cf56e9263a152b84da86e75a5c0cdcdb7a47891
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
P 2f3376ebf13df44e6acf27cb1f07172cd8b34033 P 1122b410de68a3c79b4c719a3a4cc4dc6a5bb39d
R aa84db7692e8a0ce37f76fa70188d582 R ba81bea358565b1489c187d643f4773f
U drh U mistachkin
Z 06749a17929b89f5bdf09dbcde9d47c5 Z fafd555fb9fada47058f4a33fbcaaf41

View File

@@ -1 +1 @@
1122b410de68a3c79b4c719a3a4cc4dc6a5bb39d be24fbc22106e508975e316abe0471edd3833291

View File

@@ -4492,13 +4492,13 @@ next_tail:
** P3 is a flag that provides a hint to the b-tree layer that this ** P3 is a flag that provides a hint to the b-tree layer that this
** insert is likely to be an append. ** insert is likely to be an append.
** **
** If P5 contains bet OPFLAG_NCHANGE, then the change counter is ** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is
** incremented by this instruction. If OPFLAG_NCHANGE is clear, then ** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear,
** the change counter is unchanged. ** then the change counter is unchanged.
** **
** If P5 contains OPFLAG_USESEEKRESULT then the cursor must have just ** If P5 has the OPFLAG_USESEEKRESULT bit set, then the cursor must have
** done a seek to the spot where the new entry is to be inserted. This ** just done a seek to the spot where the new entry is to be inserted.
** flag avoids doing an extra seek. ** This flag avoids doing an extra seek.
** **
** This instruction only works for indices. The equivalent instruction ** This instruction only works for indices. The equivalent instruction
** for tables is OP_Insert. ** for tables is OP_Insert.