~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert.result

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
insert into t1 values (default,default,default,default), (default,default,default,default), (4,0,"a",5),(default,default,default,default);
25
25
select a,t>0,c,i from t1;
26
26
a       t>0     c       i
27
 
1       1       hello   NULL
28
 
2       1       hello   NULL
 
27
1       NULL    hello   NULL
 
28
2       NULL    hello   NULL
29
29
4       0       a       5
30
 
5       1       hello   NULL
 
30
5       NULL    hello   NULL
31
31
truncate table t1;
32
32
insert into t1 set a=default,t=default,c=default;
33
33
insert into t1 set a=default,t=default,c=default,i=default;
36
36
insert into t1 set a=default,t=default,c=default,i=default;
37
37
select a,t>0,c,i from t1;
38
38
a       t>0     c       i
39
 
1       1       hello   NULL
40
 
2       1       hello   NULL
 
39
1       NULL    hello   NULL
 
40
2       NULL    hello   NULL
41
41
4       0       a       5
42
42
5       0       a       NULL
43
 
6       1       hello   NULL
 
43
6       NULL    hello   NULL
44
44
drop table t1;
45
45
create table t1 (id int NOT NULL DEFAULT 8);
46
46
insert into t1 values(NULL);