Re: ObjectIdGetDatum() missing from SearchSysCache*() callers - Mailing list pgsql-hackers

From Aleksander Alekseev
Subject Re: ObjectIdGetDatum() missing from SearchSysCache*() callers
Date
Msg-id CAJ7c6TMU7L3nQQSebUJJ6G2fp4E9o3kVnkRjmaOi3wG6Jxb8KA@mail.gmail.com
Whole thread Raw
In response to Re: ObjectIdGetDatum() missing from SearchSysCache*() callers  (Zhang Mingli <zmlpostgres@gmail.com>)
Responses Re: ObjectIdGetDatum() missing from SearchSysCache*() callers
Re: ObjectIdGetDatum() missing from SearchSysCache*() callers
List pgsql-hackers
Hi,

> And inside pg_sequence_parameters:
> pgstuple = SearchSysCache1(SEQRELID, relid);

Found another one in partcache.c:

```
    /* Get pg_class.relpartbound */
    tuple = SearchSysCache1(RELOID, RelationGetRelid(rel));
```

I can't be 100% sure but it looks like that's all of them. PFA the
updated patch v2.

-- 
Best regards,
Aleksander Alekseev

Attachment

pgsql-hackers by date:

Previous
From: Stéphane Tachoires
Date:
Subject: Re: [PATCH] Automatic HASH and LIST partition creation
Next
From: Aleksander Alekseev
Date:
Subject: Re: ObjectIdGetDatum() missing from SearchSysCache*() callers