~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/t/create_not_windows.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

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