mariadb/mysql-test/r/create_not_windows.result
unknown 2ac90a72a3 Fix for merged error (result set needed to be updated)
mysql-test/r/create_not_windows.result:
  Change in test.
2006-06-15 21:52:00 -07:00

14 lines
431 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`;