v.22.1Improvement
LineAsString Output Format Added
LineAsString can be used as output format. This closes #30919. #33331 (Sergei Trifonov).Why it matters
This feature addresses the need for a simple, line-oriented output format, enabling easier integration with tools or scripts that process plain text line by line. It simplifies extraction and readability when complex structured formats are unnecessary.How to use it
To use this feature, specify the output formatLineAsString in your query by appending FORMAT LineAsString at the end of your SQL query. For example:SELECT * FROM table_name FORMAT LineAsString