~dshrews/drizzle/bugs_626566_637590

« back to all changes in this revision

Viewing changes to tests/r/type_blob.result

  • Committer: lbieber
  • Date: 2010-09-10 20:58:20 UTC
  • mfrom: (1755.1.2 build)
  • Revision ID: lbieber@orisndriz03-20100910205820-shbkvejye90mm85y
Merge Andrew - fix bug 629571 - Trim down some of the drizzle client auto-complete.
Merge Andrew - fix bug 634374 - Fix SHOW FIELDS FROM so that it can identify VARBINARY and TEXT types

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
show columns from t1;
4
4
Field   Type    Null    Default Default_is_NULL On_Update
5
5
a       BLOB    YES             YES     
6
 
b       BLOB    YES             YES     
 
6
b       TEXT    YES             YES     
7
7
c       BLOB    YES             YES     
8
 
d       BLOB    YES             YES     
9
 
e       BLOB    YES             YES     
 
8
d       TEXT    YES             YES     
 
9
e       TEXT    YES             YES     
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;