aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-08-07 20:25:37 +0000
committerdrh <drh@noemail.net>2014-08-07 20:25:37 +0000
commitb28ce65f45ef4fabef86e0fc1dc55a211ca8d191 (patch)
tree2e4bc594e8174764d0d0522e8bff67c644227f11 /src
parentddef5dc044de3ec73c9223359d45f1a6a55a792d (diff)
downloadsqlite-b28ce65f45ef4fabef86e0fc1dc55a211ca8d191.tar.gz
sqlite-b28ce65f45ef4fabef86e0fc1dc55a211ca8d191.zip
Remove the extraneous debugging printf() from the previous check-in.
FossilOrigin-Name: 8f04d2c0084afa6381e78847c9aa296498d448cb
Diffstat (limited to 'src')
-rw-r--r--src/where.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c
index ff65cc3b3..ff50f52b4 100644
--- a/src/where.c
+++ b/src/where.c
@@ -5547,7 +5547,6 @@ static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){
}
if( jj>=nTo ){
/* None of the existing best-so-far paths match the candidate. */
-if( nTo>=mxChoice && rCost==mxCost ) printf("nOut=%d mxOut=%d\n", nOut, mxOut);
if( nTo>=mxChoice
&& (rCost>mxCost || (rCost==mxCost && nOut>=mxOut))
){