mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
8b6806800a
Moved the test case to separate non-windows specific file. mysql-test/r/create.result: Moved non-windows specific test case to create_not_windows.test. mysql-test/t/create.test: Moved non-windows specific test case to create_not_windows.test. mysql-test/r/create_not_windows.result: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test. mysql-test/t/create_not_windows.test: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test.
14 lines
432 B
Text
14 lines
432 B
Text
drop table if exists `about:text`;
|
|
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`;
|
|
Table Create Table
|
|
about:text CREATE TABLE `about:text` (
|
|
`_id` int(11) NOT NULL auto_increment,
|
|
`about:text` varchar(255) NOT NULL default '',
|
|
PRIMARY KEY (`_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
|
drop table `about:text`;
|