diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-02-14 14:09:29 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-02-14 14:09:29 +0100 |
commit | fb27ce22f77705d394beb6acd7aa4be2ff008890 (patch) | |
tree | cf1288c289055405cf14f2b9ee408a90948e95ab /mysql-test/r/union_crash-714.result | |
parent | e2a99f1863a7a4d5d6d22c9f39de3b255c959f98 (diff) | |
parent | 5a21dc7df1024c13c212f687c5ebc40d9cb74c5b (diff) | |
download | mariadb-git-fb27ce22f77705d394beb6acd7aa4be2ff008890.tar.gz |
5.3 merge
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; |