~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_var.test

  • Committer: Brian Aker
  • Date: 2009-03-12 20:00:28 UTC
  • mfrom: (929.1.7 merge)
  • Revision ID: brian@tangent.org-20090312200028-lqywwjv6p5kwin1w
Merge from Brian (dead code in parser, change default scheduler)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Test heap tables with variable-sized records.
 
3
#
 
4
 
 
5
--disable_warnings
 
6
drop table if exists t1;
 
7
--enable_warnings
 
8
 
 
9
set @@session.max_heap_table_size=16*1024*1024;
 
10
 
 
11
--error 1234
 
12
create table t1 (a int not null, b varchar(400), c int, primary key (a), key (c)) engine=heap comment="testing heaps" block_size=128;
 
13
 
 
14
--error 1234
 
15
create table t1 (a int not null, b int, c varchar(400), primary key (a), key (b)) engine=heap comment="testing heaps" block_size=4;
 
16
 
 
17
create table t1 (a int not null, b int, c varchar(400), d varchar(400), primary key (a), key (b)) engine=heap comment="testing heaps" block_size=24;
 
18
 
 
19
#show table status like "t1";
 
20
 
 
21
insert into t1 values (1,1,'012',NULL), (2,2,'0123456789',NULL), (3,3,'012345678901234567890123456789',NULL), (4,4,NULL,'0123456789012345678901234567890123456789012345678901234567890123456789');
 
22
select * from t1;
 
23
 
 
24
delete from t1 where a = 3;
 
25
select * from t1;
 
26
 
 
27
insert into t1 values (5,5,NULL,'0123'), (6,6,NULL,'0123');
 
28
select * from t1;
 
29
 
 
30
update t1 set c = '012345678901234567890123456789' where a = 2;
 
31
select * from t1;
 
32
 
 
33
update t1 set c = '0123456789' where a = 2;
 
34
select * from t1;
 
35
 
 
36
insert into t1 values (7,7,'0123',NULL), (8,8,'0123',NULL);
 
37
select * from t1;
 
38
 
 
39
#show table status like "t1";
 
40
alter table t1 block_size = 0;
 
41
#show table status like "t1";
 
42
alter table t1 row_format = dynamic;
 
43
#show table status like "t1";
 
44
alter table t1 block_size = 128, max_rows = 10001;
 
45
#show table status like "t1";
 
46
 
 
47
select * from t1;
 
48
 
 
49
delete from t1;
 
50
select * from t1;
 
51
 
 
52
let $1=10001;
 
53
 
 
54
disable_query_log;
 
55
begin;
 
56
while ($1) 
 
57
{
 
58
 
 
59
  eval insert into t1 values ($1,$1,$1,$1);
 
60
 
 
61
  dec $1;
 
62
 
 
63
}
 
64
commit;
 
65
enable_query_log;
 
66
 
 
67
select count(*) from t1;
 
68
 
 
69
--error 1114
 
70
insert into t1 values (100000,100000,NULL,'0123'), (100000,100000,NULL,'0123');
 
71
 
 
72
#show table status like "t1";
 
73
select count(*) from t1;
 
74
 
 
75
set @@session.max_heap_table_size=default;
 
76
 
 
77
drop table t1;
 
78
 
 
79
# End of 5.0 tests