1
# Setup table for tests
4
--source include/setup-global-constraints.inc
6
create temporary table t3 (a varchar(255), b varchar(255)) engine=myisam;
7
insert into t3 select * from t1;
8
--error ER_OUT_OF_GLOBAL_READMEMORY
9
select SQL_BIG_RESULT * from t3, (select * from t1) as t4 where t3.a != '';