mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-24 16:18:08 +01:00
95dc3e08bd
FossilOrigin-Name: 5135aab0c0ab39f3b9cc84efbbc57f7266b42d98134fc0c5dace06f707374195
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# 2023 February 28
|
|
#
|
|
# 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.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
|
|
source [file join [file dirname [info script]] recover_common.tcl]
|
|
set testprefix recoverbuild
|
|
|
|
|
|
# The following tests verify that if the recovery extension is used with
|
|
# a build that does not support the sqlite_dbpage table, the error message
|
|
# is "no such table: sqlite_dbpage", and not something more generic.
|
|
#
|
|
reset_db
|
|
create_null_module db sqlite_dbpage
|
|
do_execsql_test 1.0 {
|
|
CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT);
|
|
INSERT INTO t1 VALUES(123, 'one hundred and twenty three');
|
|
}
|
|
|
|
forcedelete test.db2
|
|
do_test 1.1 {
|
|
set R [sqlite3_recover_init db main test.db2]
|
|
} {/sqlite_recover.*/}
|
|
|
|
do_test 1.2 {
|
|
$R run
|
|
} {1}
|
|
|
|
do_test 1.3 {
|
|
list [catch { $R finish } msg] $msg
|
|
} {1 {no such table: sqlite_dbpage}}
|
|
|
|
finish_test
|
|
|