1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a typo in the test script added for ticket [5ee23731f15].

FossilOrigin-Name: d0f55b5c3b1a85d837cd1d8a2f089c6bcf5a8c0d
This commit is contained in:
drh
2009-10-13 18:49:53 +00:00
parent a2c8a95b1c
commit a46057b0fe
3 changed files with 11 additions and 11 deletions

View File

@@ -30,7 +30,7 @@ do_test tkt-5ee237-1.1 {
INSERT INTO t1 SELECT x+8 FROM t1;
}
db close
sqlite3 db b1.db -readonly 1
sqlite3 db test.db -readonly 1
set rc [catch {
db eval {SELECT rowid, x FROM t1 ORDER BY x} {
db eval {UPDATE t1 SET x=x+1 WHERE rowid=:rowid}