~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_var.test

  • Committer: Jay Pipes
  • Date: 2009-08-19 21:45:49 UTC
  • mfrom: (1118 staging)
  • mto: This revision was merged to the branch mainline in revision 1119.
  • Revision ID: jpipes@serialcoder-20090819214549-707ixisg44uwhu5r
Merge with 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";