Peter Eisentraut writes:
> Make node output prefix match node structure name
Surely this should have included a catversion bump,
because it broke stored rules.
regards, tom lane
Make node output prefix match node structure name
as done in e58136069687b9cf29c27281e227ac397d72141d
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitdiff/51e81794058e78a151368d0b652f3c92602568c0
Modified Files
--
src/backend/nodes/outfuncs.c | 2 +-
src/bac
On 9/15/21 5:30 PM, Tom Lane wrote:
> Peter Eisentraut writes:
>> Make node output prefix match node structure name
>
> Just for the record, this should have included a catversion bump,
> since it surely broke stored rules.
It did. I just ran into a problem cause by the lack of catversion bump.
Peter Eisentraut writes:
> Make node output prefix match node structure name
Just for the record, this should have included a catversion bump,
since it surely broke stored rules.
regards, tom lane
Make node output prefix match node structure name
In most cases, the prefix string in a node output is the upper case of
the node structure name, e.g., MergeAppend -> MERGEAPPEND. There were
a few exceptions that for either no apparent reason or perhaps minor
aesthetic reasons deviated from this.