]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typos in the documentation for OP_Column.
authordrh <drh@noemail.net>
Mon, 3 Apr 2017 13:17:31 +0000 (13:17 +0000)
committerdrh <drh@noemail.net>
Mon, 3 Apr 2017 13:17:31 +0000 (13:17 +0000)
FossilOrigin-Name: 777b43e64ffb2fb80ba7b705c129c133bf9787993a66cde1759dc070b324b4b4

manifest
manifest.uuid
src/vdbe.c

index aa94d46525aa4ad625f885ab128d963159dbb545..e817e1e57f2bb808f8b72b35ddaa6176e2ab77f8 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Slightly\ssmaller\sand\sfaster\simplementation\sfor\svdbeSorterCompareInt().
-D 2017-04-03T12:04:39.935
+C Fix\stypos\sin\sthe\sdocumentation\sfor\sOP_Column.
+D 2017-04-03T13:17:31.089
 F Makefile.in 1cc758ce3374a32425e4d130c2fe7b026b20de5b8843243de75f087c0a2661fb
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc a4c0613a18663bda56d8cf76079ab6590a7c3602e54befb4bbdef76bcaa38b6a
@@ -468,7 +468,7 @@ F src/update.c 456d4a4656f8a03c2abc88a51b19172197400e58
 F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c
 F src/util.c ca8440ede81e155d15cff7c101654f60b55a9ae6
 F src/vacuum.c 1fe4555cd8c9b263afb85b5b4ee3a4a4181ad569
-F src/vdbe.c d275c79e5e23f5208da106bd8e04206dff373a9797f07ab01d64af139a0301fd
+F src/vdbe.c 1be564c66097e8982229bbc4d3de3042427dfdff0e5e7b7287bf7531faf474bf
 F src/vdbe.h caa5346d52bae2a3c8c1dcfa60a7a4dc878a9e3865cb8239da55808b316c8158
 F src/vdbeInt.h 5db089ce18c4feff8820ec6e4cac2d2c82e03d4b1d96f10a6e43832147b8dffe
 F src/vdbeapi.c 5b08d82592bcff4470601fe78aaabebd50837860
@@ -1569,7 +1569,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P e6e36b288fdf21b7ff7f0bf85d2225b6505f54367b183c302c93c34a4a40b8b5
-R d96ebce90865dec08afc476da7f545eb
+P 84fa069c5bdfe41d03d03875c9157cc6785150b677c04e40b8916ba5af073dc8
+R 712574d4524a4e566586181081140bf0
 U drh
-Z ac1b2d769355137cbadf1703484266cb
+Z 0dbc639fc4406be2788a574780c7997d
index 35356ca02e0fbf6c7731534ee4909ab99a8cfd37..7e8c18ad23fb357251c802e5052861a958591882 100644 (file)
@@ -1 +1 @@
-84fa069c5bdfe41d03d03875c9157cc6785150b677c04e40b8916ba5af073dc8
\ No newline at end of file
+777b43e64ffb2fb80ba7b705c129c133bf9787993a66cde1759dc070b324b4b4
\ No newline at end of file
index 7056d20aaaa82193ec6059a3571dcd38d55f261f..fd4705abcdd72802253d1dd064b602a5b6b998ac 100644 (file)
@@ -2440,7 +2440,7 @@ case OP_NotNull: {            /* same as TK_NOTNULL, jump, in1 */
 **
 ** The value extracted is stored in register P3.
 **
-** If the column contains fewer than P2 fields, then extract a NULL.  Or,
+** If the record contains fewer than P2 fields, then extract a NULL.  Or,
 ** if the P4 argument is a P4_MEM use the value of the P4 argument as
 ** the result.
 **
@@ -2449,7 +2449,7 @@ case OP_NotNull: {            /* same as TK_NOTNULL, jump, in1 */
 ** The first OP_Column against a pseudo-table after the value of the content
 ** register has changed should have this bit set.
 **
-** If the OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG bits are set on P5 when
+** If the OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG bits are set on P5 then
 ** the result is guaranteed to only be used as the argument of a length()
 ** or typeof() function, respectively.  The loading of large blobs can be
 ** skipped for length() and all content loading can be skipped for typeof().