Re: Add index OID macro argument to DECLARE_INDEX

From: Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>
To: John Naylor <john(dot)naylor(at)enterprisedb(dot)com>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Add index OID macro argument to DECLARE_INDEX
Date: 2021-06-29 06:17:11
Message-ID: ea33c0db-a1dc-2c1b-d52a-1ad852a5b095@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 21.06.21 13:53, John Naylor 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.

committed, thanks

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrey Lepikhov 2021-06-29 06:28:33 Add '--ignore-errors' into pg_regress
Previous Message Craig Ringer 2021-06-29 06:01:21 Re: RFC: Detailed reorder buffer stats dumps