~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/r/show_fields.result

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
a       CREATE TABLE `a` (
8
8
  `a` bigint NOT NULL AUTO_INCREMENT,
9
9
  UNIQUE KEY `a` (`a`)
10
 
) ENGINE=InnoDB
 
10
) ENGINE=InnoDB COLLATE = utf8_general_ci
11
11
create table b ( b int);
12
12
show fields from b;
13
13
Field   Type    Null    Default Default_is_NULL On_Update
16
16
Table   Create Table
17
17
b       CREATE TABLE `b` (
18
18
  `b` int DEFAULT NULL
19
 
) ENGINE=InnoDB
 
19
) ENGINE=InnoDB COLLATE = utf8_general_ci
20
20
create table c ( b int NOT NULL);
21
21
show fields from c;
22
22
Field   Type    Null    Default Default_is_NULL On_Update
25
25
Table   Create Table
26
26
c       CREATE TABLE `c` (
27
27
  `b` int NOT NULL
28
 
) ENGINE=InnoDB
 
28
) ENGINE=InnoDB COLLATE = utf8_general_ci
29
29
create table d ( b int NOT NULL DEFAULT 10);
30
30
show fields from d;
31
31
Field   Type    Null    Default Default_is_NULL On_Update
34
34
Table   Create Table
35
35
d       CREATE TABLE `d` (
36
36
  `b` int NOT NULL DEFAULT '10'
37
 
) ENGINE=InnoDB
 
37
) ENGINE=InnoDB COLLATE = utf8_general_ci
38
38
create table e ( b int DEFAULT NULL);
39
39
show fields from e;
40
40
Field   Type    Null    Default Default_is_NULL On_Update
43
43
Table   Create Table
44
44
e       CREATE TABLE `e` (
45
45
  `b` int DEFAULT NULL
46
 
) ENGINE=InnoDB
 
46
) ENGINE=InnoDB COLLATE = utf8_general_ci
47
47
drop tables a,b,c,d,e;