mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
6 lines
194 B
Plaintext
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;
|