]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a test case in temptrigger.test so that it works in auto-vacuum mode.
authordan <dan@noemail.net>
Thu, 28 Nov 2013 06:17:56 +0000 (06:17 +0000)
committerdan <dan@noemail.net>
Thu, 28 Nov 2013 06:17:56 +0000 (06:17 +0000)
FossilOrigin-Name: c3b7a0e61f4ad690a56ece1d348a3ef74ab300fe

manifest
manifest.uuid
test/temptrigger.test

index 2b11db792dbc086ab60737b1551d5dbf2134588b..46cc74231237e787acbbe194109492db28867094 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Remove\sunnecessary\slocal\svariables\sfrom\ssqlite3VdbeExec()\sin\sorder\sto\nreduce\sstack-space\srequirements\sof\sthat\sroutine.
-D 2013-11-27T21:07:03.594
+C Fix\sa\stest\scase\sin\stemptrigger.test\sso\sthat\sit\sworks\sin\sauto-vacuum\smode.
+D 2013-11-28T06:17:56.598
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in e1a9b4258bbde53f5636f4e238c65b7e11459e2b
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -839,7 +839,7 @@ F test/tableopts.test dba698ba97251017b7c80d738c198d39ab747930
 F test/tclsqlite.test 37a61c2da7e3bfe3b8c1a2867199f6b860df5d43
 F test/tempdb.test 19d0f66e2e3eeffd68661a11c83ba5e6ace9128c
 F test/temptable.test d2c9b87a54147161bcd1822e30c1d1cd891e5b30
-F test/temptrigger.test 0a48d94222d50e6e50d72ac103606c4f8e7cbb81
+F test/temptrigger.test 8ec228b0db5d7ebc4ee9b458fc28cb9e7873f5e1
 F test/tester.tcl bce6b929932498383ce92431da6a96432c690bf7
 F test/thread001.test 9f22fd3525a307ff42a326b6bc7b0465be1745a5
 F test/thread002.test e630504f8a06c00bf8bbe68528774dd96aeb2e58
@@ -1145,7 +1145,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P ec2d47a1db2349d5c9b4fe465506e0e347f77921
-R 7567a16f49e2bdddacaa25bcadbc50b4
-U drh
-Z d833492813320be0733490cbebae9751
+P 81891288d9f281cf2ceb4cd701c0c3231b1bab19
+R e5054da8ef1fdd961404f7ffc7aa7a5a
+U dan
+Z 17d1dc6a3f28e852709091d44bbd59ab
index d8103977d6c10c8bfa832e90049136dd82b3b686..0fdb1c275e6e2681fbd895b9d20b22ee88986e96 100644 (file)
@@ -1 +1 @@
-81891288d9f281cf2ceb4cd701c0c3231b1bab19
\ No newline at end of file
+c3b7a0e61f4ad690a56ece1d348a3ef74ab300fe
\ No newline at end of file
index d646b672b957872ca234928aac511986584396ec..551c620479a53ad25c50e743b9472d8f7f3ccef4 100644 (file)
@@ -265,10 +265,10 @@ do_test 6.1 {
 } {}
 
 do_execsql_test 6.2 {
-  SELECT * FROM aux.sqlite_master;
+  SELECT type,name,tbl_name,sql FROM aux.sqlite_master;
   INSERT INTO aux.t1 VALUES(1,2,3);
 } {
-  table t1 t1 {CREATE TABLE t1(a, b, c)}
+  table t1 t1 {CREATE TABLE t1(a, b, c)}
 }
 
 do_catchsql_test 6.3 {