Re: bugfix - fix broken output in expanded aligned format, when data are too short - Mailing list pgsql-hackers

From Chao Li
Subject Re: bugfix - fix broken output in expanded aligned format, when data are too short
Date
Msg-id FD1712E1-9646-4438-BD17-97E08CE70BEC@gmail.com
Whole thread Raw
In response to Re: bugfix - fix broken output in expanded aligned format, when data are too short  (Pavel Stehule <pavel.stehule@gmail.com>)
Responses Re: bugfix - fix broken output in expanded aligned format, when data are too short
List pgsql-hackers

> On Mar 24, 2026, at 13:46, Pavel Stehule <pavel.stehule@gmail.com> wrote:
>
> Hi
>
> new version
>
> * fixed unwanted forcing to wrapped mode
> * regress test
>
> Regards
>
> Pavel
> <v20260324-1-0001-The-output-of-thin-table-is-broken-in-expanded-mode-.patch>

Thanks for the fix. The patch overall looks good to me. A couple of small comments:

1
```
     /*
      * Calculate available width for data in wrapped mode
      */
-    if (cont->opt->format == PRINT_WRAPPED)
+    if (cont->opt->format == PRINT_WRAPPED || cont->opt->format == PRINT_ALIGNED)
```

Since the condition has been updated, I think the comment above should be adjusted as well.

2
```
+-- the output in expanded mode is shorter than header
+\pset border 2
+\pset expanded on
+create table psql_short_tab(a int, b int);
+insert into psql_short_tab values(10,20),(30,40);
+\pset format aligned
+select * from psql_short_tab;
+\pset format wrapped
+select * from psql_short_tab;
+drop table psql_short_tab;
+
```

After this test, does it make sense to turn expanded mode off explicitly, in case it affects following tests? Today the
nexttest happens to reset it, but maybe tomorrow a new test gets added before that point. 

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/







pgsql-hackers by date:

Previous
From: Zsolt Parragi
Date:
Subject: Re: [Patch] New pg_stat_tablespace view
Next
From: Fujii Masao
Date:
Subject: Re: [PATCH] Fix unexpected loss of DEFERRABLE property after toggling NOT ENFORCED / ENFORCED