Have "PRAGMA quick_check" compare the number of entries in tables and indexes.
[sqlite.git] / test / unionallfault.test
blobc78abe548c072b9bcdd84bb2bc4fff50017656de
1 # 2020-12-16
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
6 #    May you do good and not evil.
7 #    May you find forgiveness for yourself and forgive others.
8 #    May you share freely, never taking more than you give.
10 #***********************************************************************
13 set testdir [file dirname $argv0]
14 source $testdir/tester.tcl
15 set testprefix unionallfault
17 do_execsql_test 1.0 {
18   CREATE TABLE t1(x,y,z);
19   CREATE TABLE t3(x,y,z);
21 faultsim_save_and_close
24 do_faultsim_test 1 -faults oom-t* -prep {
25   faultsim_restore_and_reopen
26 } -body {
27   execsql {
28     SELECT * FROM t1, (
29       SELECT x FROM t1 UNION ALL SELECT y FROM t1
30     ), t3
31   }
32 } -test {
33   faultsim_test_result {0 {}}
36 finish_test