Re: system catalog pg_rewrite column ev_attr document description problem

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Kevin Grittner <kgrittn(at)ymail(dot)com>
Cc: Hari Babu <haribabu(dot)kommi(at)huawei(dot)com>, "'PostgreSQL-development'" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: system catalog pg_rewrite column ev_attr document description problem
Date: 2013-06-07 14:00:11
Message-ID: 21970.1370613611@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Kevin Grittner <kgrittn(at)ymail(dot)com> writes:
> Hari Babu <haribabu(dot)kommi(at)huawei(dot)com> wrote:
>> system catalog pg_rewrite column ev_attr document description as shown below
>>
>> ev_attr - The column this rule is for (currently, always zero to indicate
>> the whole table)
>>
>> But In the code the column value is always set as -1. can we change the
>> column description as below is fine?
>>
>> ev_attr - The column this rule is for, presently this value is -1.

> I just changed "zero" to "-1".

Actually, I think this is a bug and the right thing is to make the code
match the documentation not vice versa. ev_attr isn't being used for
much at the moment, but if it were being used as an AttrNumber, -1 would
not mean "whole row". It would be a reference to the system column with
number -1 (ctid, if memory serves). Zero is the usual choice for a
whole-row reference.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2013-06-07 14:04:15 Re: extensible external toast tuple support & snappy prototype
Previous Message Kevin Grittner 2013-06-07 13:10:20 Re: system catalog pg_rewrite column ev_attr document description problem