~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/maria_notembedded.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set session storage_engine=maria;
 
2
create table t1 (a int) row_format=page;
 
3
insert delayed into t1 values(1);
 
4
ERROR HY000: DELAYED option not supported for table 't1'
 
5
drop table t1;
 
6
create table t1 (a int) row_format=page transactional=0;
 
7
insert delayed into t1 values(1);
 
8
flush table t1;
 
9
select * from t1;
 
10
a
 
11
1
 
12
select count(*) from t1;
 
13
count(*)
 
14
1
 
15
drop table t1;
 
16
create table t1 (a int) row_format=dynamic;
 
17
insert delayed into t1 values(1);
 
18
flush table t1;
 
19
select * from t1;
 
20
a
 
21
1
 
22
select count(*) from t1;
 
23
count(*)
 
24
1
 
25
drop table t1;