v.24.3Improvement

Long Pretty format values remain intact in single-result queries like SHOW CREATE TABLE

A long value in Pretty formats won't be cut if it is the single value in the resultset, such as in the result of the SHOW CREATE TABLE query. #61795 (Alexey Milovidov).
Pretty formats now display long single values in the result set without cutting them off, improving readability for commands like SHOW CREATE TABLE.

Why it matters

This feature addresses the issue where long text values in Pretty formats were truncated when they were the only value in the query result. By preserving the entire content, users get a complete and clear view of the output, which is especially useful for inspecting full table creation statements.

How to use it

Run queries that return a single long value, such as SHOW CREATE TABLE <table_name>, and output the result using Pretty formats. The output will now show the entire value without truncation automatically.