]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix another test to account for SUM() returning integer rather than float. (CVS 2672)
authordrh <drh@noemail.net>
Thu, 8 Sep 2005 12:37:28 +0000 (12:37 +0000)
committerdrh <drh@noemail.net>
Thu, 8 Sep 2005 12:37:28 +0000 (12:37 +0000)
FossilOrigin-Name: bc723235e65eb4da7d2e4b18653f1173374cb407

manifest
manifest.uuid
test/crash.test

index 0fa1442bb9c346d9bd6038e5d4716572c130d5dc..60a7e3cad43df765d3a2003836dcf20c2dafd6b8 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\stypos\sin\sdocumentation.\s\sTicket\s#1239.\s(CVS\s2671)
-D 2005-09-08T11:04:57
+C Fix\sanother\stest\sto\saccount\sfor\sSUM()\sreturning\sinteger\srather\sthan\sfloat.\s(CVS\s2672)
+D 2005-09-08T12:37:29
 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1
 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -132,7 +132,7 @@ F test/collate6.test 6c9470d1606ee3e564675b229653e320c49ec638
 F test/conflict.test 774e10709f5e9a9a7352dc929b856929ec805e58
 F test/corrupt.test 18c7a995b1af76a8c8600b996257f2c7b7bff083
 F test/corrupt2.test 88342570828f2b8cbbd8369eff3891f5c0bdd5ba
-F test/crash.test f38b980a0508655d08c957a6dd27d66bca776504
+F test/crash.test b75460ec0ae465aa27be12d684353315755c4811
 F test/crashtest1.c 09c1c7d728ccf4feb9e481671e29dda5669bbcc2
 F test/date.test 30ca15e608a45d868fd419c901795382efe27020
 F test/default.test 252298e42a680146b1dd64f563b95bdf088d94fb
@@ -306,7 +306,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P ed4e9e751be2b982af9561aba20c8e1367828b81
-R 468ad3e318161c026b4cb9009d09f94a
+P 73fbb8d9689fecec18c36814e4358e691bcd647e
+R efbf84a8c26377be65ab30504e6faebd
 U drh
-Z d8dcff3d43c3646ebdf94f6697478e41
+Z 7134e07faaeb6a9d1ebc715293e50060
index d999cd36a5d0da6468b08dc24a93d13b4d865c36..3c7938504ea1503167aca1310065bc8bc0469a98 100644 (file)
@@ -1 +1 @@
-73fbb8d9689fecec18c36814e4358e691bcd647e
\ No newline at end of file
+bc723235e65eb4da7d2e4b18653f1173374cb407
\ No newline at end of file
index 9763a052bc79b33dc25f6fd6c0ee1606e18097e3..865360fd811e3d9ba302bb4f4140cb71c48ed600 100644 (file)
@@ -20,7 +20,7 @@
 # The special crash-test module with its os_test.c backend only works
 # on Unix.
 #
-# $Id: crash.test,v 1.17 2005/01/20 05:24:33 danielk1977 Exp $
+# $Id: crash.test,v 1.18 2005/09/08 12:37:29 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -174,7 +174,7 @@ do_test crash-2.1 {
   execsql { COMMIT }
   set ::sig [signature]
   execsql { SELECT sum(a), sum(b), sum(c) from abc }
-} {499500.0 999000.0 1498500.0}
+} {499500 999000 1498500}
 do_test crash-2.2 {
   expr ([file size test.db] / 1024)>16
 } {1}