1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-28 13:01:41 +03:00
mariadb/mysql-test/r/union_crash-714.result
Sergei Golubchik fb27ce22f7 5.3 merge
2014-02-14 14:09:29 +01:00

6 lines
194 B
Plaintext

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;