Fix typo in the intpkey-17.2 test.

FossilOrigin-Name: a45fda657d987f5c923d141584841a6c62dfb504
This commit is contained in:
drh 2016-05-07 12:15:15 +00:00
parent f09c48233a
commit 3eead27022
3 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
C Simplification\sto\sthe\slogic\sused\sto\sdecide\sbetween\sOP_Seek\sand\sOP_NotExists.\nUse\sOP_NotExists\sfor\sboth\sDELETE\sand\sUPDATE.
D 2016-05-06T20:23:12.122
C Fix\stypo\sin\sthe\sintpkey-17.2\stest.
D 2016-05-07T12:15:15.906
F Makefile.in 9eda6e1c90d05c199c3ec8a7069b0682ad307657
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc db82b35aef27f412fef14d8534afc022138bcdfd
@ -847,7 +847,7 @@ F test/insert5.test 394f96728d1258f406fe5f5aeb0aaf29487c39a6
F test/instr.test 737bbf80685232033f3abedc6ae92f75860b5dd2
F test/intarray.test 066b7d7ac38d25bf96f87f1b017bfc687551cdd4
F test/interrupt.test dfe9a67a94b0b2d8f70545ba1a6cca10780d71cc
F test/intpkey.test 890cc2df52c2dd10ae5ef922c1edcdfa2a4228f8
F test/intpkey.test ac71107a49a06492b69b82aafaf225400598d3c8
F test/io.test f95bca1783b01ea7761671560d023360d2dfa4cc
F test/ioerr.test 2a24bd6ed5a8b062e64bfe1f6cf94fb25e92210d
F test/ioerr2.test 2593563599e2cc6b6b4fcf5878b177bdd5d8df26
@ -1487,7 +1487,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P ab7ab415d19524f6c3901e474d3a154f55d28530
R f6a10a5aa5f2ff9434de04bd402f6c3f
P 3a695263183303e3f64eb2320752d0fdef53eaf2
R 51aec2bae3f4c90b051a05d513fd048f
U drh
Z 447839f87caf188b0aa6e0197947c00d
Z 7d38c3073c92b6f84127f76ce4d99aa3

View File

@ -1 +1 @@
3a695263183303e3f64eb2320752d0fdef53eaf2
a45fda657d987f5c923d141584841a6c62dfb504

View File

@ -638,7 +638,7 @@ do_execsql_test intpkey-17.1 {
do_execsql_test intpkey-17.2 {
DELETE FROM t17;
INSERT INTO t17(x,y) VALUES(123,'elephant'),(248,'giraffe');
UPDATE FROM t17 SET y='ostrich' WHERE abs(x)=248;
UPDATE t17 SET y='ostrich' WHERE abs(x)=248;
SELECT * FROM t17 ORDER BY +x;
} {123 elephant 248 ostrich}