summaryrefslogtreecommitdiff
path: root/mysql-test/t/union_crash-714.test
blob: a1fb9c12ec1d5440538733c1493afe75df9210db (plain)
1
2
3
4
5
6
7
8
9
#
# MDEV-714 LP:1020645 - crash (sig 11) with union query
#
--source include/have_debug.inc
create table t1 (i tinyint);
set debug='+d,bug11747970_raise_error';
--error ER_QUERY_INTERRUPTED
insert into t1 (i) select i from t1 union select i from t1;
drop table t1;