summaryrefslogtreecommitdiff
path: root/mysql-test/main/union_crash-714.result
blob: 4a51f88b76f0df8fc8c48dd02b4db9010f87dafd (plain)
1
2
3
4
5
create table t1 (i tinyint);
set debug_dbug='+d,bug11747970_raise_error';
insert into t1 (i) select i from t1 union select i from t1;
ERROR 70100: Query execution was interrupted
drop table t1;