mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-22 12:17:40 +01:00
20 lines
345 B
Plaintext
20 lines
345 B
Plaintext
|
/*
|
||
|
** Configure five tasks in different ways, then run tests.
|
||
|
*/
|
||
|
PRAGMA page_size=8192;
|
||
|
--task 1
|
||
|
PRAGMA journal_mode=PERSIST;
|
||
|
PRAGMA mmap_limit=0;
|
||
|
--end
|
||
|
--task 2
|
||
|
PRAGMA journal_mode=TRUNCATE;
|
||
|
PRAGMA mmap_limit=28672;
|
||
|
--end
|
||
|
--task 3
|
||
|
PRAGMA journal_mode=MEMORY;
|
||
|
--end
|
||
|
--task 4
|
||
|
PRAGMA journal_mode=OFF;
|
||
|
--end
|
||
|
--source multiwrite01.test
|