From: drh Date: Thu, 10 Apr 2008 13:20:21 +0000 (+0000) Subject: Fix a bug in the speed4p.test performance testing script. (CVS 4971) X-Git-Tag: version-3.6.10~1206 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e6ed0f04011b9d4ee76ec94f0bec7dc22e70ad4;p=thirdparty%2Fsqlite.git Fix a bug in the speed4p.test performance testing script. (CVS 4971) FossilOrigin-Name: 80311594149af093f1719ec433a633c332a5955e --- diff --git a/manifest b/manifest index 077edf5bbc..bbd4f5215f 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Replace\salways-true\scondition\swith\sassertion\s(CVS\s4970) -D 2008-04-08T03:09:22 +C Fix\sa\sbug\sin\sthe\sspeed4p.test\sperformance\stesting\sscript.\s(CVS\s4971) +D 2008-04-10T13:20:21 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7 F Makefile.in b861627d91df5ee422c54237aa38296954dc0151 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -445,7 +445,7 @@ F test/speed1p.test 5f79987671f930a8aa651091c2952c1782b0df83 F test/speed2.test 53177056baf6556dcbdcf032bbdfc41c1aa74ded F test/speed3.test e312d7e442a5047d730569fdae2ba99bc94e1a13 F test/speed4.test 20d8ea20bea3ca09c3ef3b5ec820a17e58e132cb -F test/speed4p.test 577685cc25cb66390a2dc2957d87d4d78e5af120 +F test/speed4p.test 9138ef0cd1b3cfcb01b070328e38908a2a1ad4d1 F test/sqllimits1.test cebd870957dbf8d931c5c9cadf757e0d31a3f71a F test/subquery.test 8203f85db56ba022a57a0589890090c8feed4e59 F test/subselect.test 974e87f8fc91c5f00dd565316d396a5a6c3106c4 @@ -625,7 +625,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P 6797814ec59fe819424e8e7f77779a719ecd82d3 -R f4880ee3fa791b584dcfcf7f9e7cac63 -U mlcreech -Z 81b2f2b4ead1c6fdebb8173c3322bb5b +P be7f3240c21c01509263005af2ccc3d7626fe729 +R 4ee70256885a46b43f7801b2a568c1b2 +U drh +Z f80c7c455e9d78456618252fd7ce58f8 diff --git a/manifest.uuid b/manifest.uuid index 2c9e74c51d..befafd9238 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -be7f3240c21c01509263005af2ccc3d7626fe729 \ No newline at end of file +80311594149af093f1719ec433a633c332a5955e \ No newline at end of file diff --git a/test/speed4p.test b/test/speed4p.test index dceb93c5b9..850c51f1fe 100644 --- a/test/speed4p.test +++ b/test/speed4p.test @@ -17,7 +17,7 @@ # * sub-selects # * triggers # -# $Id: speed4p.test,v 1.2 2008/03/29 17:26:02 drh Exp $ +# $Id: speed4p.test,v 1.3 2008/04/10 13:20:21 drh Exp $ # set testdir [file dirname $argv0] @@ -117,12 +117,6 @@ execsql { COMMIT; } -# Before running these tests, disable the compiled statement cache built into -# the Tcl interface. This is because we want to test the speed of SQL -# compilation as well as execution. -# -db cache size 0 - # Join t1, t2, t3 on IPK. set sql "SELECT * FROM t1, t2, t3 WHERE t1.oid = t2.oid AND t2.oid = t3.oid" speed_trial speed4p-join1 50000 row $sql