~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to tests/t/insert.test

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 }
117
117
enable_query_log;
118
118
select count(*) from t2;
 
119
--error 1697
119
120
insert into  t2 select t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
 
121
insert into  t2 select SQL_BIG_RESULT t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
120
122
select count(*) from t2;
121
123
drop table t1,t2,t3;
122
124