Two SELECTs are combined with UNION (not UNION ALL). Both inputs are already sorted by id. Why can UNION still be much slower than UNION ALL here?SELECT id FROM a UNION SELECT id FROM b;