Re: BUG #16743: psql doesn't show whole expression in stored column
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Bruce Momjian <bruce@momjian.us>
Cc: turon.david@seznam.cz, pgsql-bugs@lists.postgresql.org,
Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Date: 2020-11-24T16:25:51Z
Lists: pgsql-bugs
Bruce Momjian <bruce@momjian.us> writes:
> On Tue, Nov 24, 2020 at 10:46:57AM -0500, Tom Lane wrote:
>> Maybe we should decide that completeness is more important than keeping
>> the line to some arbitrary width. But it's operating as designed.
> I think I am fine with the current behavior.
It's less great in the context of a GENERATED column. As things stand,
the psql-side code wraps the truncated result into some more syntax:
else if (generated[0] == ATTRIBUTE_GENERATED_STORED)
default_str = psprintf("generated always as (%s) stored", PQgetvalue(res, i, attrdef_col));
else
/* (note: above we cut off the 'default' string at 128) */
default_str = PQgetvalue(res, i, attrdef_col);
which seems distinctly more confusing than just truncating the result.
So maybe there's justification here for revisiting that ancient decision.
One could also imagine not appending ") stored" if the attrdef value
appears to have been truncated --- although encoding-conversion effects
would make it hard to tell that for sure. Perhaps we'd be better off
to move the truncation logic to the psql side?
Another thing here, which is undeniably a bug, is that that psprintf
result is promptly leaked.
regards, tom lane
Commits
-
In psql's \d commands, don't truncate attribute default values.
- ea7a167daa3e 12.6 landed
- a0ef0817204d 13.2 landed
- 314fb9baeacb 14.0 landed
-
Major psql overhaul by Peter Eisentraut.
- a45195a191ee 7.1.1 cited