On Fri, Jul 10, 2026 at 9:11 PM Ilia Evdokimov <[email protected]> wrote: > > Hi, > > While using pg_clear_attribute_stats() I noticed weird printing: > > ``` > CREATE TABLE t(a int); > SELECT pg_clear_attribute_stats(NULL, 't', 'a', false); > ERROR: argument "relation" must not be null > ``` > > NULL was passed for `schemaname`, not for a `relation` argument. This > comes from cleararginfo[], where both the schema and relname entries are > labeled `relation`. > > In v1-patch I propose naming these the same way `pg_proc.dat` does, i.e. > `schemaname` and `relname`.
Thanks for the patch! LGTM. Regards, -- Fujii Masao
