The new results are correct

This commit is contained in:
Alexey Milovidov 2024-03-23 19:44:26 +01:00
parent e84ca3134d
commit e9c8a05c9d
2 changed files with 11 additions and 11 deletions

View File

@ -84,31 +84,31 @@
┏━━━┳━━━┓
x ┃ y ┃
┡━━━╇━━━┩
⋯ │ ⋯
привет │ мир
└───┴───┘
┌─x─┬─y─┐
⋯ │ ⋯
привет │ мир
└───┴───┘
x y
⋯ ⋯
привет мир
┏━━━┳━━━┓
x ┃ y ┃
┡━━━╇━━━┩
⋯ │ ⋯
привет │ мир
├───┼───┤
⋯ │ ⋯
мир │ привет
└───┴───┘
┌─x─┬─y─┐
⋯ │ ⋯
⋯ │ ⋯
привет │ мир
мир │ привет
└───┴───┘
x y
⋯ ⋯
⋯ ⋯
привет мир
мир привет
┏━━━┳━━━┓
┃ x ┃ y ┃
┡━━━╇━━━┩
⋯ │ ⋯
привет │ мир
└───┴───┘

View File

@ -1,4 +1,4 @@
SET output_format_pretty_color = 1, output_format_pretty_max_value_width_apply_for_single_value = 1;
SET output_format_pretty_color = 1, output_format_pretty_max_value_width_apply_for_single_value = 1, output_format_pretty_row_numbers = 0;
SELECT 'привет' AS x, 'мир' AS y FORMAT Pretty;
SET output_format_pretty_max_value_width = 5;