7985e05a97
FossilOrigin-Name: 4e97dd31f5240d9231167ae172a5116426c42177a1ed3c5422b9d51b762d5a87
59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
# 2022 September 07
|
|
#
|
|
# 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.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
# Tests for the SQLITE_RECOVER_ROWIDS option.
|
|
#
|
|
|
|
if {![info exists testdir]} {
|
|
set testdir [file join [file dirname [info script]] .. .. test]
|
|
}
|
|
source [file join [file dirname [info script]] recover_common.tcl]
|
|
source $testdir/tester.tcl
|
|
set testprefix recoverrowid
|
|
|
|
ifcapable !vtab {
|
|
finish_test; return
|
|
}
|
|
|
|
proc recover {db bRowids output} {
|
|
forcedelete $output
|
|
|
|
set R [sqlite3_recover_init db main test.db2]
|
|
$R config rowids $bRowids
|
|
$R run
|
|
$R finish
|
|
}
|
|
|
|
do_execsql_test 1.0 {
|
|
CREATE TABLE t1(a, b);
|
|
INSERT INTO t1 VALUES(1, 1), (2, 2), (3, 3), (4, 4);
|
|
DELETE FROM t1 WHERE a IN (1, 3);
|
|
}
|
|
|
|
do_test 1.1 {
|
|
recover db 0 test.db2
|
|
sqlite3 db2 test.db2
|
|
execsql { SELECT rowid, a, b FROM t1 ORDER BY rowid} db2
|
|
} {1 2 2 2 4 4}
|
|
|
|
do_test 1.2 {
|
|
db2 close
|
|
recover db 1 test.db2
|
|
sqlite3 db2 test.db2
|
|
execsql { SELECT rowid, a, b FROM t1 ORDER BY rowid} db2
|
|
} {2 2 2 4 4 4}
|
|
db2 close
|
|
|
|
|
|
|
|
|
|
finish_test
|