1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Fix a datatype in trigger6.test that changed due to the previous check-in. (CVS 2454)

FossilOrigin-Name: c2af7d2c947bcec507087cc3a1e5b21e6322e4cd
This commit is contained in:
drh
2005-05-05 11:04:50 +00:00
parent c7f269d551
commit 0405a34d11
3 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
C In\sthe\sTCL\sinterface,\suser-defined\sfunctions\spreserve\sthe\sdatatype\sreturned\nby\sthe\sTcl\sprocedure.\s(CVS\s2453)
D 2005-05-05T10:30:30
C Fix\sa\sdatatype\sin\strigger6.test\sthat\schanged\sdue\sto\sthe\sprevious\scheck-in.\s(CVS\s2454)
D 2005-05-05T11:04:50
F Makefile.in 5c00d0037104de2a50ac7647a5f12769795957a3
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -206,7 +206,7 @@ F test/trigger2.test f671b922c88f70c3cd2c6f03fe7c256ae7a52fc4
F test/trigger3.test 9102fd3933db294dc654b5aee9edfe9e94f2b9e2
F test/trigger4.test 9615207f3746b1f3965113007869e45a895d2497
F test/trigger5.test 619391a3e9fc194081d22cefd830d811e7badf83
F test/trigger6.test 88b4c0c9f67e4244af39627538526bbaf97132f5
F test/trigger6.test 0e411654f122552da6590f0b4e6f781048a4a9b9
F test/types.test f0a98d10c5ecc9865d19dc94486f9873afc6bb6b
F test/types2.test 81dd1897be8ef4b5b73d0006e6076abe40610de3
F test/unique.test 0e38d4cc7affeef2527720d1dafd1f6870f02f2b
@@ -279,7 +279,7 @@ F www/tclsqlite.tcl 425be741b8ae664f55cb1ef2371aab0a75109cf9
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
P d9418851cebc1605d8d62aad7987c0d61a905e81
R cc12eb94118d09818ed72970e80aadcb
P 99dcba1fb1fdaa2b8bc85046b00c14f6af596e8f
R 943162d2a51a7676be864656dabdc391
U drh
Z a8e499380f6d4d0850b3a88c9fa43f3f
Z a8d68ad70021089f8616993d8c1b4a8b

View File

@@ -1 +1 @@
99dcba1fb1fdaa2b8bc85046b00c14f6af596e8f
c2af7d2c947bcec507087cc3a1e5b21e6322e4cd

View File

@@ -17,7 +17,7 @@
# that the same evaluation occurs for the actual INSERT/UPDATE and
# for the NEW.* fields of any triggers that fire.
#
# $Id: trigger6.test,v 1.1 2004/12/07 15:41:50 drh Exp $
# $Id: trigger6.test,v 1.2 2005/05/05 11:04:50 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -60,12 +60,12 @@ do_test trigger6-1.3 {
INSERT INTO t1 VALUES(2,counter(2,3)+4);
SELECT * FROM t1;
}
} {2 6.0}
} {2 6}
do_test trigger6-1.4 {
execsql {
SELECT * FROM log;
}
} {1 2 6.0}
} {1 2 6}
do_test trigger6-1.5 {
execsql {
DELETE FROM log;