1
by brian
clean slate |
1 |
drop table if exists `about:text`; |
1063.9.3
by Brian Aker
Partial fix for tests for tmp |
2 |
create TEMPORARY table `about:text` ( |
1
by brian
clean slate |
3 |
_id int not null auto_increment, |
4 |
`about:text` varchar(255) not null default '', |
|
5 |
primary key (_id) |
|
722.2.21
by Monty Taylor
Enabled create_not_windows. |
6 |
) ENGINE=MyISAM; |
1
by brian
clean slate |
7 |
show create table `about:text`; |
8 |
Table Create Table |
|
1063.9.3
by Brian Aker
Partial fix for tests for tmp |
9 |
about:text CREATE TEMPORARY TABLE `about:text` ( |
1743.5.2
by LinuxJedi
Alter many test cases for the new SHOW CREATE TABLE output |
10 |
`_id` INT NOT NULL AUTO_INCREMENT, |
11 |
`about:text` VARCHAR(255) COLLATE utf8_general_ci NOT NULL DEFAULT '', |
|
722.2.21
by Monty Taylor
Enabled create_not_windows. |
12 |
PRIMARY KEY (`_id`) |
1638.10.64
by Stewart Smith
create_no_windows.result with explicit COLLATE in SHOW CREATE TABLE |
13 |
) ENGINE=MyISAM COLLATE = utf8_general_ci |
1
by brian
clean slate |
14 |
drop table `about:text`; |