~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_var.test

  • Committer: Brian Aker
  • Date: 2009-08-18 07:20:29 UTC
  • mfrom: (1117.1.9 merge)
  • Revision ID: brian@gaz-20090818072029-s9ch5lcmltxwidn7
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#show table status like "t1";
42
42
alter table t1 row_format = dynamic;
43
43
#show table status like "t1";
44
 
alter table t1 block_size = 128, max_rows = 10001;
 
44
alter table t1 block_size = 128;
45
45
#show table status like "t1";
46
46
 
47
47
select * from t1;
66
66
 
67
67
select count(*) from t1;
68
68
 
69
 
--error 1114
 
69
--error 1062
70
70
insert into t1 values (100000,100000,NULL,'0123'), (100000,100000,NULL,'0123');
71
71
 
72
72
#show table status like "t1";