mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb_plugin / r / innodb-use-sys-malloc.result
blob2ec4c7c81303b3e6d834aa25cb2b4e000ad5aa48
1 SELECT @@GLOBAL.innodb_use_sys_malloc;
2 @@GLOBAL.innodb_use_sys_malloc
4 1 Expected
5 SET @@GLOBAL.innodb_use_sys_malloc=0;
6 ERROR HY000: Variable 'innodb_use_sys_malloc' is a read only variable
7 Expected error 'Read only variable'
8 SELECT @@GLOBAL.innodb_use_sys_malloc;
9 @@GLOBAL.innodb_use_sys_malloc
11 1 Expected
12 drop table if exists t1;
13 create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
14 insert into t1 values (1),(2),(3),(4),(5),(6),(7);
15 select * from t1;
24 drop table t1;
25 SELECT @@GLOBAL.innodb_use_sys_malloc;
26 @@GLOBAL.innodb_use_sys_malloc
28 1 Expected
29 SET @@GLOBAL.innodb_use_sys_malloc=0;
30 ERROR HY000: Variable 'innodb_use_sys_malloc' is a read only variable
31 Expected error 'Read only variable'
32 SELECT @@GLOBAL.innodb_use_sys_malloc;
33 @@GLOBAL.innodb_use_sys_malloc
35 1 Expected
36 drop table if exists t1;
37 create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
38 insert into t1 values (1),(2),(3),(4),(5),(6),(7);
39 select * from t1;
48 drop table t1;