mariadb/mysql-test/suite/maria/r/maria_notembedded.result

26 lines
528 B
Text
Raw Normal View History

set session storage_engine=maria;
create table t1 (a int) row_format=page;
insert delayed into t1 values(1);
2008-10-10 17:28:41 +02:00
ERROR HY000: DELAYED option not supported for table 't1'
drop table t1;
create table t1 (a int) row_format=page transactional=0;
insert delayed into t1 values(1);
flush table t1;
select * from t1;
a
1
select count(*) from t1;
count(*)
1
drop table t1;
create table t1 (a int) row_format=dynamic;
insert delayed into t1 values(1);
flush table t1;
select * from t1;
a
1
select count(*) from t1;
count(*)
1
drop table t1;