From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com> |
Cc: | turon(dot)david(at)seznam(dot)cz, pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #16743: psql doesn't show whole expression in stored column |
Date: | 2020-11-25 16:15:39 |
Message-ID: | 464990.1606320939@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
I wrote:
> Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com> writes:
>> I think we should get rid of the truncating. Otherwise, there is no way
>> to actually get the full information, is there? (Other than pg_dump or
>> manual catalog queries.)
> That'd be okay with me. It's always seemed a little odd that we do that
> for attrdefs but not anything else.
Here's a proposed patch for that.
After looking a bit closer, I saw that the memory leak I was worried
about before is not real, because the code passes mustfree = true to
printTableAddCell. However, I still don't like it one bit, because you
need some undocumented and fragile assumptions about the relationship
between attidentity and attgenerated to conclude that we won't instead
have a false free() attempt on something that mustn't be free'd. So I
think we should adjust the code to track mustfree explicitly, as done
below.
Should we back-patch this? I think that the truncation behavior became
significantly more of a problem with the addition of the GENERATED
feature; before that it was clearer what was going on. So I'm mildly
inclined to back-patch to v12 where that came in.
regards, tom lane
Attachment | Content-Type | Size |
---|---|---|
undo-attrdef-truncation.patch | text/x-diff | 1.7 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2020-11-25 16:42:40 | Re: BUG #16743: psql doesn't show whole expression in stored column |
Previous Message | Tom Lane | 2020-11-25 15:03:53 | Re: BUG #16743: psql doesn't show whole expression in stored column |