v.1.1.54362New Feature
Type Conversion for UNION ALL Now Supports Different Alias Names in SELECT Positions
Added type conversion forUNION ALL. Different alias names are allowed inSELECTpositions inUNION ALL, in compliance with the SQL standard.
Why it matters
This feature resolves issues when usingUNION ALL with queries that have differing alias names in their SELECT clauses. It ensures that ClickHouse correctly performs type conversion and merges results according to the SQL standard, improving query compatibility and user experience.How to use it
Users can simply writeUNION ALL queries with different aliases in the SELECT statements as usual. The system now automatically handles the type conversions and alias differences without requiring any additional configuration.