mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
concurrent transactions that have both used page X as an in-memory free-list trunk page, where X lies past the end of the initial database images. FossilOrigin-Name: dc0fc2aa7cbefeb5f0ba8c992fd3e9adcfb5a4d61e2321c1bd93f4d36ba9aafc
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
# 2018 Jan 5
|
|
#
|
|
# The author disclaims copyright to this source code. In place of
|
|
# a legal notice, here is a blessing:
|
|
#
|
|
# May you do good and not evil.
|
|
# May you find forgiveness for yourself and forgive others.
|
|
# May you share freely, never taking more than you give.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
set ::testprefix concurrent7
|
|
|
|
sqlite3 db2 test.db
|
|
|
|
do_execsql_test 1 {
|
|
PRAGMA journal_mode = wal;
|
|
CREATE TABLE t1(x);
|
|
CREATE TABLE t2(x);
|
|
} {wal}
|
|
|
|
do_execsql_test -db db2 2 {
|
|
SELECT * FROM t1;
|
|
}
|
|
|
|
do_execsql_test 3 {
|
|
BEGIN CONCURRENT;
|
|
INSERT INTO t1 VALUES(randomblob(1500));
|
|
INSERT INTO t1 VALUES(randomblob(1500));
|
|
DELETE FROM t1 WHERE rowid = 1;
|
|
}
|
|
|
|
do_execsql_test -db db2 4 {
|
|
INSERT INTO t2 VALUES(randomblob(1500));
|
|
INSERT INTO t2 VALUES(randomblob(1500));
|
|
INSERT INTO t2 VALUES(randomblob(1500));
|
|
INSERT INTO t2 VALUES(randomblob(1500));
|
|
DELETE FROM t2 WHERE rowid IN (1, 2);
|
|
}
|
|
|
|
do_execsql_test 5 {
|
|
COMMIT;
|
|
PRAGMA integrity_check;
|
|
} {ok}
|
|
|
|
finish_test
|
|
|
|
|