1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Limit integrity_check output to 10 lines in mptester scripts.

FossilOrigin-Name: 67ee0dc0f4de5dc2ae92fb98932f1fdda3e76bdf
This commit is contained in:
drh
2013-04-09 20:04:09 +00:00
parent ab755ac81a
commit 7de96f7fc1
4 changed files with 18 additions and 18 deletions

View File

@ -225,35 +225,35 @@ SELECT count(*), total(length(b)) FROM t5;
--task 5
DROP INDEX t5b;
--sleep 5
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
CREATE INDEX t5b ON t5(b DESC);
--end
--task 3
DROP INDEX t3b;
--sleep 5
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
CREATE INDEX t3b ON t3(b DESC);
--end
--task 1
DROP INDEX t1b;
--sleep 5
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
CREATE INDEX t1b ON t1(b DESC);
--end
--task 2
DROP INDEX t2b;
--sleep 5
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
CREATE INDEX t2b ON t2(b DESC);
--end
--task 4
DROP INDEX t4b;
--sleep 5
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
CREATE INDEX t4b ON t4(b DESC);
--end
@ -312,7 +312,7 @@ SELECT count(*), total(length(b)) FROM t5;
--wait all
VACUUM;
PRAGMA integrity_check;
PRAGMA integrity_check(10);
--match ok
--task 1