~vlad-lesin/percona-server/mysql-5.0.33-original

« back to all changes in this revision

Viewing changes to mysql-test/t/create_not_windows.test

  • Committer: Vlad Lesin
  • Date: 2012-07-31 09:21:34 UTC
  • Revision ID: vladislav.lesin@percona.com-20120731092134-zfodx022b7992wsi
VirginĀ 5.0.33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Non-windows specific create tests.
 
2
 
 
3
--source include/not_windows.inc
 
4
 
 
5
#
 
6
# Bug#19479:mysqldump creates invalid dump
 
7
#
 
8
--disable_warnings
 
9
drop table if exists `about:text`;
 
10
--enable_warnings
 
11
create table `about:text` ( 
 
12
_id int not null auto_increment,
 
13
`about:text` varchar(255) not null default '',
 
14
primary key (_id)
 
15
);
 
16
 
 
17
show create table `about:text`; 
 
18
drop table `about:text`;
 
19
 
 
20
# End of 5.0 tests