1create table t1 (i tinyint);
2SET @saved_dbug = @@SESSION.debug_dbug;
3SET debug_dbug='+d,bug11747970_raise_error';
4insert into t1 (i) select i from t1 union select i from t1;
5ERROR 70100: Query execution was interrupted
6drop table t1;
7SET debug_dbug= @saved_dbug;
8