v.22.5Improvement

Allow Tuple Element Names to Start with Digits

Allow names of tuple elements that start from digits. #36544 (Anton Popov).
Allow tuple element names in ClickHouse to start with digits.

Why it matters

This feature solves the limitation where tuple element names could not begin with numeric characters, enabling more flexible and expressive naming conventions when working with tuples.

How to use it

Users can now define tuple element names starting with digits directly in their queries or table definitions without any special configuration. For example: tuple('1value', 42) is now valid.