~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_not_windows.test

  • Committer: Monty Taylor
  • Date: 2008-10-23 00:05:28 UTC
  • Revision ID: monty@inaugust.com-20081023000528-grdvrd8c4058nutm
Moved my_handler to myisam, which is where it actually belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Bug#19479:mysqldump creates invalid dump
3
 
#
4
 
--disable_warnings
5
 
drop table if exists `about:text`;
6
 
--enable_warnings
7
 
create TEMPORARY table `about:text` ( 
8
 
_id int not null auto_increment,
9
 
`about:text` varchar(255) not null default '',
10
 
primary key (_id)
11
 
) ENGINE=MyISAM;
12
 
 
13
 
show create table `about:text`; 
14
 
drop table `about:text`;
15
 
 
16
 
 
17
 
# End of 5.0 tests