# Test of scenarios potentially too big for --valgrind or --mem enable_info; set storage_engine=maria; disable_warnings; drop table if exists t1, t2; enable_warnings; create table t1(a char(3)); insert into t1 values("abc"); insert into t1 select "def" from t1; insert into t1 select "ghi" from t1; insert into t1 select "jkl" from t1; insert into t1 select "mno" from t1; insert into t1 select "pqr" from t1; insert into t1 select "stu" from t1; insert into t1 select "vwx" from t1; insert into t1 select "yza" from t1; insert into t1 select "ceg" from t1; insert into t1 select "ikm" from t1; insert into t1 select "oqs" from t1; select count(*) from t1; insert into t1 select "uwy" from t1; create table t2 select * from t1; select count(*) from t1; select count(*) from t2; drop table t1, t2; disable_info;