~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table.result

I'm not entire sure I buy that column default should be varbinary... 

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
Field   Type    Null    Default Default_is_NULL On_Update
55
55
GROUP_ID        INTEGER FALSE   0       FALSE   
56
56
LANG_ID INTEGER FALSE   0       FALSE   
57
 
NAME    VARCHAR FALSE   0       FALSE   
 
57
NAME    VARCHAR FALSE           FALSE   
58
58
DROP TABLE t1;
59
59
create table t1 (n int);
60
60
insert into t1 values(9),(3),(12),(10);
177
177
show columns from t1;
178
178
Field   Type    Null    Default Default_is_NULL On_Update
179
179
i       INTEGER FALSE   0       FALSE   
180
 
c       VARCHAR TRUE    0       TRUE    
 
180
c       VARCHAR TRUE            TRUE    
181
181
drop table t1;
182
182
create table t1 (a int, b int);
183
183
set autocommit=0;