summaryrefslogtreecommitdiff
path: root/mysql-test/t/create_not_windows.test
blob: 7e51ff510242e6586c0a1f038a942494b204c9eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Non-windows specific create tests.

--source include/not_windows.inc

#
# Bug#19479:mysqldump creates invalid dump
#
--disable_warnings
drop table if exists `about:text`;
--enable_warnings
create table `about:text` ( 
_id int not null auto_increment,
`about:text` varchar(255) not null default '',
primary key (_id)
);

show create table `about:text`; 
drop table `about:text`;


# End of 5.0 tests