~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-11-16 20:15:33 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116201533-d0f19s1bk1h95iyw
Removed a big bank of includes from item.h.

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