~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
show create table a;
6
6
Table   Create Table
7
7
a       CREATE TABLE `a` (
8
 
  `a` bigint NOT NULL AUTO_INCREMENT,
 
8
  `a` BIGINT NOT NULL AUTO_INCREMENT,
9
9
  UNIQUE KEY `a` (`a`)
10
10
) ENGINE=InnoDB COLLATE = utf8_general_ci
11
11
create table b ( b int);
15
15
show create table b;
16
16
Table   Create Table
17
17
b       CREATE TABLE `b` (
18
 
  `b` int DEFAULT NULL
 
18
  `b` INT DEFAULT NULL
19
19
) ENGINE=InnoDB COLLATE = utf8_general_ci
20
20
create table c ( b int NOT NULL);
21
21
show fields from c;
24
24
show create table c;
25
25
Table   Create Table
26
26
c       CREATE TABLE `c` (
27
 
  `b` int NOT NULL
 
27
  `b` INT NOT NULL
28
28
) ENGINE=InnoDB COLLATE = utf8_general_ci
29
29
create table d ( b int NOT NULL DEFAULT 10);
30
30
show fields from d;
33
33
show create table d;
34
34
Table   Create Table
35
35
d       CREATE TABLE `d` (
36
 
  `b` int NOT NULL DEFAULT '10'
 
36
  `b` INT NOT NULL DEFAULT '10'
37
37
) ENGINE=InnoDB COLLATE = utf8_general_ci
38
38
create table e ( b int DEFAULT NULL);
39
39
show fields from e;
42
42
show create table e;
43
43
Table   Create Table
44
44
e       CREATE TABLE `e` (
45
 
  `b` int DEFAULT NULL
 
45
  `b` INT DEFAULT NULL
46
46
) ENGINE=InnoDB COLLATE = utf8_general_ci
47
47
drop tables a,b,c,d,e;