~drizzle-trunk/drizzle/development

1638.10.1 by Stewart Smith
add really simple SHOW CREATE TABLE test to help with migrating SHOW CREATE to use proto
1
CREATE TABLE t1 (a int primary key);
2
SHOW CREATE TABLE t1;
3
Table	Create Table
4
t1	CREATE TABLE `t1` (
1743.5.2 by LinuxJedi
Alter many test cases for the new SHOW CREATE TABLE output
5
  `a` INT NOT NULL,
2363.1.5 by Brian Aker
This patch fixes 798940, we will also just now add the type of index to our create statements.
6
  PRIMARY KEY (`a`) USING BTREE
1638.10.87 by Stewart Smith
fix SHOW CREATE TABLE tests for explicit COLLATE in CREATE TABLE
7
) ENGINE=InnoDB COLLATE = utf8_general_ci
1638.10.1 by Stewart Smith
add really simple SHOW CREATE TABLE test to help with migrating SHOW CREATE to use proto
8
DROP TABLE t1;