~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-07 19:30:18 UTC
  • mfrom: (322.2.8 stdize-code)
  • mto: This revision was merged to the branch mainline in revision 491.
  • Revision ID: monty@inaugust.com-20081007193018-22fhaywc990akeqa
Merged code from Mats that I should have merged a while ago.

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