Re: Add index OID macro argument to DECLARE_INDEX - Mailing list pgsql-hackers

From John Naylor
Subject Re: Add index OID macro argument to DECLARE_INDEX
Date
Msg-id CAFBsxsEV94d82G1+mxAW6_T=MFupgtuXQc3nfO_JTinEU=TmoQ@mail.gmail.com
Whole thread Raw
In response to Add index OID macro argument to DECLARE_INDEX  (Peter Eisentraut <peter.eisentraut@enterprisedb.com>)
Responses Re: Add index OID macro argument to DECLARE_INDEX  (Peter Eisentraut <peter.eisentraut@enterprisedb.com>)
List pgsql-hackers

On Mon, Jun 21, 2021 at 3:23 AM Peter Eisentraut <peter.eisentraut@enterprisedb.com> wrote:
>
>
> This patch changes places like this
>
> DECLARE_UNIQUE_INDEX_PKEY(pg_aggregate_fnoid_index, 2650, on
> pg_aggregate using btree(aggfnoid oid_ops));
> #define AggregateFnoidIndexId  2650
>
> to this
>
> DECLARE_UNIQUE_INDEX_PKEY(pg_aggregate_fnoid_index, 2650,
> AggregateFnoidIndexId, on pg_aggregate using btree(aggfnoid oid_ops));

+1, and the patch looks good to me.

--
John Naylor
EDB: http://www.enterprisedb.com

pgsql-hackers by date:

Previous
From: Greg Nancarrow
Date:
Subject: Re: Remove useless int64 range checks on BIGINT sequence MINVALUE/MAXVALUE values
Next
From: Andres Freund
Date:
Subject: Re: pg14b1 stuck in lazy_scan_prune/heap_page_prune of pg_statistic