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` ( |
722.2.21
by Monty Taylor
Enabled create_not_windows. |
10 |
`_id` int NOT NULL AUTO_INCREMENT, |
873.2.35
by Monty Taylor
Update tests based on how Toru's latest patch changes create table statements. |
11 |
`about:text` varchar(255) NOT NULL DEFAULT '', |
722.2.21
by Monty Taylor
Enabled create_not_windows. |
12 |
PRIMARY KEY (`_id`) |
13 |
) ENGINE=MyISAM |
|
1
by brian
clean slate |
14 |
drop table `about:text`; |