diff options
Diffstat (limited to 'mysql-test/t/maria-big.test')
-rw-r--r-- | mysql-test/t/maria-big.test | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/t/maria-big.test b/mysql-test/t/maria-big.test new file mode 100644 index 00000000000..f68531c3894 --- /dev/null +++ b/mysql-test/t/maria-big.test @@ -0,0 +1,26 @@ +# 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; |