diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-02-13 20:21:57 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-02-13 20:21:57 +0100 |
commit | 12253abadb1b2993469dbfad59b1043ecc974983 (patch) | |
tree | 1100c6b12f8a6b3773556e70aa1e4c7c4da4ec70 /mysql-test/r/union_crash-714.result | |
parent | 4b57720caabb434c055bb67b6cf73e51cb044138 (diff) | |
download | mariadb-git-12253abadb1b2993469dbfad59b1043ecc974983.tar.gz |
MDEV-714 LP:1020645 - crash (sig 11) with union query
Don't ignore the error from st_select_lex_unit::optimize()
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..2811f8bd7f5 --- /dev/null +++ b/mysql-test/r/union_crash-714.result @@ -0,0 +1,5 @@ +create table t1 (i tinyint); +set debug='+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; |