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

Fix a typo on the OP_IdxInsert documentation. No code changes.

FossilOrigin-Name: e4acd98207bf12b28f6c0f77896ba8f0b0a155d5
This commit is contained in:
drh
2016-11-09 01:19:25 +00:00
parent 9b4eaebc68
commit fb8c56f21b
3 changed files with 8 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
C Enhance\sthe\sOP_IdxInsert\sopcode\sto\soptionally\saccept\sunpacked\skey\smaterial. C Fix\sa\stypo\son\sthe\sOP_IdxInsert\sdocumentation.\s\sNo\scode\schanges.
D 2016-11-09T00:10:33.633 D 2016-11-09T01:19:25.538
F Makefile.in 6fd48ffcf7c2deea7499062d1f3747f986c19678 F Makefile.in 6fd48ffcf7c2deea7499062d1f3747f986c19678
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc e0217f2d35a0448abbe4b066132ae20136e8b408 F Makefile.msc e0217f2d35a0448abbe4b066132ae20136e8b408
@@ -454,7 +454,7 @@ F src/update.c 771335a33c958a186b66ef7e349f978d6bb2aac4
F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c
F src/util.c 3e2da6101888d073e79ecc6af5e0a2f70fa1e498 F src/util.c 3e2da6101888d073e79ecc6af5e0a2f70fa1e498
F src/vacuum.c 33c174b28886b2faf26e503b5a49a1c01a9b1c16 F src/vacuum.c 33c174b28886b2faf26e503b5a49a1c01a9b1c16
F src/vdbe.c 8044db96efdc586273e2c41aab3cc8f3d8ccb761 F src/vdbe.c e6bf36b1df5ff32d222e8c96cacb2fb951be42a2
F src/vdbe.h c044be7050ac6bf596eecc6ab159f5dbc020a3b7 F src/vdbe.h c044be7050ac6bf596eecc6ab159f5dbc020a3b7
F src/vdbeInt.h d8a56a491b752dbb5f671963b8c861ec72ea875e F src/vdbeInt.h d8a56a491b752dbb5f671963b8c861ec72ea875e
F src/vdbeapi.c 97129bec6b1553da50d8e73f523c278bda66d9f6 F src/vdbeapi.c 97129bec6b1553da50d8e73f523c278bda66d9f6
@@ -1530,10 +1530,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P bec5b6d4d083556d111a89186b4f7b35b5e7cebf P 89d958abbac45f2ca5954080cd9e74ec9a07ebb2
R 91f828c4f65c4334fdcc0da90044f102 R 2f63be5b53b1764858d941957facd0a5
T *branch * unpacked-IdxInsert
T *sym-unpacked-IdxInsert *
T -sym-trunk *
U drh U drh
Z 760e23a13de3588aeee4a9588e9f1a85 Z 100f9d5faafe3036eeb3f1b9e19b8a02

View File

@@ -1 +1 @@
89d958abbac45f2ca5954080cd9e74ec9a07ebb2 e4acd98207bf12b28f6c0f77896ba8f0b0a155d5

View File

@@ -5024,7 +5024,7 @@ next_tail:
** MakeRecord instructions. This opcode writes that key ** MakeRecord instructions. This opcode writes that key
** into the index P1. Data for the entry is nil. ** into the index P1. Data for the entry is nil.
** **
** If P4 is not zero, the it is the number of values in the unpacked ** If P4 is not zero, then it is the number of values in the unpacked
** key of reg(P2). In that case, P3 is the index of the first register ** key of reg(P2). In that case, P3 is the index of the first register
** for the unpacked key. The availability of the unpacked key can sometimes ** for the unpacked key. The availability of the unpacked key can sometimes
** be an optimization. ** be an optimization.