1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

BUG#20484: "Partitions: crash with EXPLAIN and UNION"

- Don't forget to produce "partitions" column for "UNION RESULT" row of EXPLAIN output
This commit is contained in:
sergefp@mysql.com
2006-06-30 09:34:06 +04:00
parent 3b3dde6f4e
commit 342283d00a
3 changed files with 17 additions and 0 deletions

View File

@@ -590,3 +590,10 @@ explain partitions select * from t2;
--horizontal_results
drop table t2;
# BUG#20484 "Partitions: crash with explain and union"
create table t1 (s1 int);
explain partitions select 1 from t1 union all select 2;
drop table t1;