~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert.result

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
insert into t1 values (default,default,default,default);
25
25
insert into t1 values (default,default,default,default);
26
26
insert into t1 values (4,0,"a",5);
27
 
ERROR HY000: Received an invalid timestamp value '0'.
 
27
ERROR HY000: Received an invalid value '0' for a UNIX timestamp.
28
28
insert into t1 values (default,default,default,default);
29
29
select a,t is not null,c,i from t1;
30
30
a       t is not null   c       i
77
77
count(*)
78
78
500
79
79
insert into  t2 select t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
80
 
ERROR HY000: Temporary table too large, rerun with SQL_BIG_RESULT.
81
 
insert into  t2 select SQL_BIG_RESULT t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
82
80
select count(*) from t2;
83
81
count(*)
84
82
25500
85
 
COMMIT;
86
83
drop table t1,t2,t3;
87
84
create table t1 (a int, b int);
88
85
insert into t1 (a,b) values (a,b);