From: | Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com> |
---|---|
To: | Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: PATCH: pageinspect / add page_checksum and bt_page_items(bytea) |
Date: | 2017-03-07 16:09:50 |
Message-ID: | e41f61f4-fcd4-a64e-2214-52e1c76b6cf2@2ndquadrant.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 3/6/17 16:33, Tomas Vondra wrote:
>> I think it would be better not to maintain so much duplicate code
>> between bt_page_items(text, int) and bt_page_items(bytea). How about
>> just redefining bt_page_items(text, int) as an SQL-language function
>> calling bt_page_items(get_raw_page($1, $2))?
>>
>
> Maybe. We can also probably share the code at the C level, so I'll look
> into that.
I think SQL would be easier, but either way some reduction in
duplication would be good.
>> For page_checksum(), the checksums are internally unsigned, so maybe
>> return type int on the SQL level, so that there is no confusion about
>> the sign?
>>
>
> That ship already sailed, I'm afraid. We already have checksum in the
> page_header() output, and it's defined as smallint there. So using int
> here would be inconsistent.
OK, no worries then.
--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2017-03-07 16:11:19 | Re: Parallel bitmap heap scan |
Previous Message | Dilip Kumar | 2017-03-07 16:09:31 | Re: Parallel bitmap heap scan |