diff options
Diffstat (limited to 'mysql-test/r/union_crash-714.result')
-rw-r--r-- | mysql-test/r/union_crash-714.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/union_crash-714.result b/mysql-test/r/union_crash-714.result new file mode 100644 index 00000000000..4a51f88b76f --- /dev/null +++ b/mysql-test/r/union_crash-714.result @@ -0,0 +1,5 @@ +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; |