]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Restrict the scope of the explainIndexRange() function in where.c.
authordrh <drh@noemail.net>
Fri, 10 Oct 2014 19:15:35 +0000 (19:15 +0000)
committerdrh <drh@noemail.net>
Fri, 10 Oct 2014 19:15:35 +0000 (19:15 +0000)
FossilOrigin-Name: c30124520027f0f860223bf842e2f09db3dafb5f

manifest
manifest.uuid
src/where.c

index 1b392cbba7a0ec0264df37977267371f3deca408..d84631e2208f156271b0b0e22e7985895ff25506 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sa\sfailing\stest\scase\sin\sindex5.test.\sAlso\stweak\sthe\sway\scache\smemory\sis\sdivided\sbetween\sread-only\sand\sdirty\spages\swhen\susing\sSQLITE_CONFIG_PAGECACHE\sto\sreduce\sIO\sin\ssome\scases.
-D 2014-10-10T19:10:59.145
+C Restrict\sthe\sscope\sof\sthe\sexplainIndexRange()\sfunction\sin\swhere.c.
+D 2014-10-10T19:15:35.023
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -302,7 +302,7 @@ F src/vtab.c 019dbfd0406a7447c990e1f7bd1dfcdb8895697f
 F src/wal.c 10e7de7ce90865a68153f001a61f1d985cd17983
 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
 F src/walker.c c253b95b4ee44b21c406e2a1052636c31ea27804
-F src/where.c b511252533ca9f70e6adfc0ffd5c82594df137a2
+F src/where.c 75af78b4a4125e891f62d997d6d93b006a8c7d68
 F src/whereInt.h 124d970450955a6982e174b07c320ae6d62a595c
 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -1203,7 +1203,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 9ee5686ab3b0bca8cabdf455c75bd9410cdc5378
-R a867243fa8e0f0e41c6d9028f2d48296
-U dan
-Z 113af8b0b8de7f680d672bce9ecfd1d0
+P 8541dfb3bbdf63dc9ab304d8a0ab8b290cdc9d96
+R 56927b83c6bc9f8ed8f382263f0b3a19
+U drh
+Z 9069bb5e423e6471fadcdc96cb083909
index 14bf033b2553fe345df6f3ad353ce64217ed5d1d..ced410d581090e4b550806f2eadca1040baa76b5 100644 (file)
@@ -1 +1 @@
-8541dfb3bbdf63dc9ab304d8a0ab8b290cdc9d96
\ No newline at end of file
+c30124520027f0f860223bf842e2f09db3dafb5f
\ No newline at end of file
index 5b639946cf11598bdaa94a93fadb4a8d57a1c3c5..bd59055b4af6f5ce65051e2004c5e363db96f112 100644 (file)
@@ -2749,7 +2749,7 @@ static void explainAppendTerm(
 **
 **   "a=? AND b>?"
 */
-void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop, Table *pTab){
+static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop, Table *pTab){
   Index *pIndex = pLoop->u.btree.pIndex;
   u16 nEq = pLoop->u.btree.nEq;
   u16 nSkip = pLoop->u.btree.nSkip;