~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/empty_table.test

  • Committer: Stewart Smith
  • Date: 2009-06-16 03:02:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1065.
  • Revision ID: stewart@flamingspork.com-20090616030259-tn2thqrajk6cappd
ER_NISAMCHK is unused, mark it as so. Thanks to Paul DuBois for researching this for MySQL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
create table t1 (nr int(5) not null auto_increment,b blob,str char(10), primary key (nr));
 
9
create table t1 (nr int not null auto_increment,b blob,str char(10), primary key (nr));
10
10
select count(*) from t1;
11
11
select * from t1;
12
12
select * from t1 limit 0;