~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#
2
# Bug#19479:mysqldump creates invalid dump
3
#
4
--disable_warnings
5
drop table if exists `about:text`;
6
--enable_warnings
1063.9.3 by Brian Aker
Partial fix for tests for tmp
7
create TEMPORARY table `about:text` ( 
1 by brian
clean slate
8
_id int not null auto_increment,
9
`about:text` varchar(255) not null default '',
10
primary key (_id)
722.2.21 by Monty Taylor
Enabled create_not_windows.
11
) ENGINE=MyISAM;
1 by brian
clean slate
12
13
show create table `about:text`; 
14
drop table `about:text`;
15
16
17
# End of 5.0 tests