~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_var.test

  • Committer: Eric Day
  • Date: 2009-08-27 18:06:03 UTC
  • mfrom: (1125 staging)
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090827180603-hy264dq4s78dptdo
Merged trunk.

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";