mariadb/mysql-test/r/union_crash-714.result
Sergei Golubchik fb27ce22f7 5.3 merge
2014-02-14 14:09:29 +01: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;