mariadb/mysql-test/main/union_crash-714.result
2018-03-29 13:59:44 +03:00

5 lines
194 B
Text

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;