blob: ce657478c150d2e5d848289292e2973a1065ffca [file] [log] [blame]
-- Ensure that UNION ALL columns are in the correct order on both sides
-- Ensure that the appropriate error message is propagated
CREATE TABLE IF NOT EXISTS union3 (bar int, baz int);
SELECT * FROM ( SELECT f.bar, f.baz FROM union3 f UNION ALL SELECT b.baz, b.bar FROM union3 b ) c;
DROP TABLE union3;