~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/type_blob.result

  • Committer: Brian Aker
  • Date: 2010-02-25 07:54:52 UTC
  • mfrom: (1273.13.101 build)
  • Revision ID: brian@gaz-20100225075452-19eozreshbrerypu
Merge of all patches in build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1,t2,t3,t4,t5,t6,t7;
2
2
CREATE TABLE t1 (a blob, b text, c blob, d text, e text);
3
3
show columns from t1;
4
 
Field   Type    Null    Key     Default Extra
5
 
a       blob    YES             NULL    
6
 
b       text    YES             NULL    
7
 
c       blob    YES             NULL    
8
 
d       text    YES             NULL    
9
 
e       text    YES             NULL    
 
4
Field   Type    Null    Default Default is NULL On Update
 
5
a       BLOB    TRUE            TRUE    
 
6
b       BLOB    TRUE            TRUE    
 
7
c       BLOB    TRUE            TRUE    
 
8
d       BLOB    TRUE            TRUE    
 
9
e       BLOB    TRUE            TRUE    
10
10
CREATE TABLE t2 (a varchar(255), b blob, c blob);
11
11
CREATE TABLE t4 (c varchar(16383) not null);
12
12
show columns from t2;
13
 
Field   Type    Null    Key     Default Extra
14
 
a       varchar(255)    YES             NULL    
15
 
b       blob    YES             NULL    
16
 
c       blob    YES             NULL    
 
13
Field   Type    Null    Default Default is NULL On Update
 
14
a       VARCHAR TRUE            TRUE    
 
15
b       BLOB    TRUE            TRUE    
 
16
c       BLOB    TRUE            TRUE    
17
17
create table t3 (a int, b int);
18
18
show create TABLE t3;
19
19
Table   Create Table