~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_var.test

* Renames Ha_trx_info to drizzled::ResourceContext
* Renames Sesssion_TRANS to drizzled::TransactionContext
* Replaces homegrown linked-lists of Ha_trx_info pointers
  with vector<drizzled::ResourceContext> operations
* Renames Session::getEngineInfo() to Session::getResourceContext()

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
create temporary table t1 (a int not null, b int, c varchar(400), d varchar(400), primary key (a), key (b)) engine=MEMORY comment="testing heaps" block_size=24;
18
18
 
19
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
20
 
show table status like "t1";
 
19
#show table status like "t1";
21
20
 
22
21
insert into t1 values (1,1,'012',NULL), (2,2,'0123456789',NULL), (3,3,'012345678901234567890123456789',NULL), (4,4,NULL,'0123456789012345678901234567890123456789012345678901234567890123456789');
23
22
select * from t1;
37
36
insert into t1 values (7,7,'0123',NULL), (8,8,'0123',NULL);
38
37
select * from t1;
39
38
 
40
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
41
 
show table status like "t1";
 
39
#show table status like "t1";
42
40
alter table t1 block_size = 0;
43
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
44
 
show table status like "t1";
 
41
#show table status like "t1";
45
42
alter table t1 row_format = dynamic;
46
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
47
 
show table status like "t1";
 
43
#show table status like "t1";
48
44
alter table t1 block_size = 128;
49
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
50
 
show table status like "t1";
 
45
#show table status like "t1";
51
46
 
52
47
select * from t1;
53
48
 
74
69
--error 1062
75
70
insert into t1 values (100000,100000,NULL,'0123'), (100000,100000,NULL,'0123');
76
71
 
77
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
78
 
show table status like "t1";
 
72
#show table status like "t1";
79
73
select count(*) from t1;
80
74
 
81
75
set @@session.max_heap_table_size=default;