From: drh Date: Sat, 24 May 2014 17:15:15 +0000 (+0000) Subject: Remove references in comments to VDBE opcodes that no longer exist. This X-Git-Tag: version-3.8.5~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=935850ef7578a0b989ba07791cc2c99bcbefde29;p=thirdparty%2Fsqlite.git Remove references in comments to VDBE opcodes that no longer exist. This is a documentation change only; no changes to code. FossilOrigin-Name: ebfb51fe40756713d269b4c0ade752666910bb6e --- diff --git a/manifest b/manifest index c7efb2f184..c39d583ac3 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Changes\sto\sthe\soutput\sof\sEXPLAIN\sQUERY\sPLAN\sto\smake\sit\sclearer\swhen\sa\squery\suses\sthe\sPRIMARY\sKEY\sindex\sof\sa\sWITHOUT\sROWID\stable. -D 2014-05-23T17:17:06.736 +C Remove\sreferences\sin\scomments\sto\sVDBE\sopcodes\sthat\sno\slonger\sexist.\s\sThis\nis\sa\sdocumentation\schange\sonly;\sno\schanges\sto\scode. +D 2014-05-24T17:15:15.576 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in dd2b1aba364ff9b05de41086f74407f285c57670 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -281,7 +281,7 @@ F src/update.c 5b3e74a03b3811e586b4f2b4cbd7c49f01c93115 F src/utf.c 6dc9ec9f1b3db43ae8ba0365377f11df1ee4c01c F src/util.c 049fe1d3c0e2209c1bee107aec2fcff6285f909f F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 -F src/vdbe.c 7f359193bf2366cc914a9ece093ebf284e56acdc +F src/vdbe.c 3ebcbe6a83198045b0411956fc6005b9f4a6991c F src/vdbe.h 394464909ed682334aa3d5831aae0c2fe2abef94 F src/vdbeInt.h e6d83e5bfd62fc6685ba1ed6153f7099f82de9f7 F src/vdbeapi.c 0ed6053f947edd0b30f64ce5aeb811872a3450a4 @@ -1172,7 +1172,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P b5cde57166fd874d00dec23d3a59bf3a23979fc5 -R 95b58110418b282213fae9a9ae120c97 -U dan -Z 904df162d630dffcdb8ed4cc227020da +P 9268df305b90ac11e44b3107bbab5becf38860b7 +R bc701579fd7f073e7430b8784d345a7f +U drh +Z e5b850c5c7a548d035682ab5ac668a73 diff --git a/manifest.uuid b/manifest.uuid index b899a71935..84e009386b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9268df305b90ac11e44b3107bbab5becf38860b7 \ No newline at end of file +ebfb51fe40756713d269b4c0ade752666910bb6e \ No newline at end of file diff --git a/src/vdbe.c b/src/vdbe.c index a64e5bf5e1..f5b159ca4a 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -3464,7 +3464,7 @@ case OP_Close: { ** is greater than or equal to the key value. If there are no records ** greater than or equal to the key and P2 is not zero, then jump to P2. ** -** See also: Found, NotFound, Distinct, SeekLt, SeekGt, SeekLe +** See also: Found, NotFound, SeekLt, SeekGt, SeekLe */ /* Opcode: SeekGt P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] @@ -3478,7 +3478,7 @@ case OP_Close: { ** is greater than the key value. If there are no records greater than ** the key and P2 is not zero, then jump to P2. ** -** See also: Found, NotFound, Distinct, SeekLt, SeekGe, SeekLe +** See also: Found, NotFound, SeekLt, SeekGe, SeekLe */ /* Opcode: SeekLt P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] @@ -3492,7 +3492,7 @@ case OP_Close: { ** is less than the key value. If there are no records less than ** the key and P2 is not zero, then jump to P2. ** -** See also: Found, NotFound, Distinct, SeekGt, SeekGe, SeekLe +** See also: Found, NotFound, SeekGt, SeekGe, SeekLe */ /* Opcode: SeekLe P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] @@ -3506,7 +3506,7 @@ case OP_Close: { ** is less than or equal to the key value. If there are no records ** less than or equal to the key and P2 is not zero, then jump to P2. ** -** See also: Found, NotFound, Distinct, SeekGt, SeekGe, SeekLt +** See also: Found, NotFound, SeekGt, SeekGe, SeekLt */ case OP_SeekLT: /* jump, in3 */ case OP_SeekLE: /* jump, in3 */