2008-02-15 18:29:53 +01:00
|
|
|
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'
|
2008-02-15 18:29:53 +01:00
|
|
|
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;
|