~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/r/innodb-use-sys-malloc.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mto: (1.2.1) (37.1.1 lucid-security)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: package-import@ubuntu.com-20120222223355-ku1tb4r70osci6v2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SELECT @@GLOBAL.innodb_use_sys_malloc;
2
 
@@GLOBAL.innodb_use_sys_malloc
3
 
1
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
10
 
1
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;
16
 
a
17
 
1
18
 
2
19
 
3
20
 
4
21
 
5
22
 
6
23
 
7
24
 
drop table t1;
25
 
SELECT @@GLOBAL.innodb_use_sys_malloc;
26
 
@@GLOBAL.innodb_use_sys_malloc
27
 
1
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
34
 
1
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;
40
 
a
41
 
1
42
 
2
43
 
3
44
 
4
45
 
5
46
 
6
47
 
7
48
 
drop table t1;