Re: pgsql: Make node output prefix match node structure name

2022-04-12 Thread Tom Lane
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

pgsql: Make node output prefix match node structure name

2022-04-12 Thread Peter Eisentraut
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

Re: pgsql: Make node output prefix match node structure name

2021-10-05 Thread Vik Fearing
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.

Re: pgsql: Make node output prefix match node structure name

2021-09-15 Thread Tom Lane
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

pgsql: Make node output prefix match node structure name

2021-09-15 Thread Peter Eisentraut
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.