mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
5 lines
194 B
Text
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;
|