diff options
Diffstat (limited to 'mysql-test/main/union_crash-714.result')
-rw-r--r-- | mysql-test/main/union_crash-714.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/union_crash-714.result b/mysql-test/main/union_crash-714.result new file mode 100644 index 00000000..371be1e0 --- /dev/null +++ b/mysql-test/main/union_crash-714.result @@ -0,0 +1,7 @@ +create table t1 (i tinyint); +SET @saved_dbug = @@SESSION.debug_dbug; +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; +SET debug_dbug= @saved_dbug; |