~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-07-12 06:26:42 UTC
  • Revision ID: brian@gaz-20100712062642-6flofbshd9rfbi0c
MErge in change to do YES/NO like standard requires.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
create table a ( a serial);
2
2
show fields from a;
3
3
Field   Type    Null    Default Default_is_NULL On_Update
4
 
a       BIGINT  FALSE           FALSE   
 
4
a       BIGINT  NO              NO      
5
5
show create table a;
6
6
Table   Create Table
7
7
a       CREATE TABLE `a` (
11
11
create table b ( b int);
12
12
show fields from b;
13
13
Field   Type    Null    Default Default_is_NULL On_Update
14
 
b       INTEGER TRUE            TRUE    
 
14
b       INTEGER YES             YES     
15
15
show create table b;
16
16
Table   Create Table
17
17
b       CREATE TABLE `b` (
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
23
 
b       INTEGER FALSE           FALSE   
 
23
b       INTEGER NO              NO      
24
24
show create table c;
25
25
Table   Create Table
26
26
c       CREATE TABLE `c` (
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
32
 
b       INTEGER FALSE   10      FALSE   
 
32
b       INTEGER NO      10      NO      
33
33
show create table d;
34
34
Table   Create Table
35
35
d       CREATE TABLE `d` (
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
41
 
b       INTEGER TRUE            TRUE    
 
41
b       INTEGER YES             YES     
42
42
show create table e;
43
43
Table   Create Table
44
44
e       CREATE TABLE `e` (