~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select.test

  • Committer: Stewart Smith
  • Date: 2008-11-19 20:56:34 UTC
  • mto: This revision was merged to the branch mainline in revision 593.
  • Revision ID: stewart@flamingspork.com-20081119205634-q5rtyek1k8keho4l
remove frm_version from TABLE_SHARE

This also means that I_S.TABLES Version column is now 0 instead of 10 by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2173
2173
create table t1 (f1 int not null auto_increment primary key, f2 varchar(10));
2174
2174
create table t11 like t1;
2175
2175
insert into t1 values(1,""),(2,"");
2176
 
--replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
 
2176
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
2177
2177
show table status like 't1%';
2178
2178
select 123 as a from t1 where f1 is null;
2179
2179
drop table t1,t11;