Re: [bug] relcache leaks in get_object_address - Mailing list pgsql-hackers

From Kohei KaiGai
Subject Re: [bug] relcache leaks in get_object_address
Date
Msg-id CADyhKSUy4RPFumXp=-YOxm+nTejef7VPHaWtvSMsCovuh3=iiQ@mail.gmail.com
Whole thread Raw
In response to [bug] relcache leaks in get_object_address  (Kohei KaiGai <kaigai@kaigai.gr.jp>)
Responses Re: [bug] relcache leaks in get_object_address
List pgsql-hackers
The attached patch fixes this problem.
Unfortunately, we have no code that invokes get_object_address()
with missing_ok = true now, so please apply a couple of patches
to rework DROP statement of mine.

DROP TRIGGER no_such_trigger ON existing_table;

shall cause a relcache reference leaks, without this patch.

Thanks,

2011/10/13 Kohei KaiGai <kaigai@kaigai.gr.jp>:
> I noticed a problem of get_object_address() with missing_ok = true.
>
> When we try to solve the name of nonexistent rule/trigger/constraint on
> a particular existing table, get_object_address_relobject() opens the
> relation, but address.objectId = InvalidOid shall be set.
>
> I think it should be closed if the queried object was missing, although
> existing code does not invoke get_object_address() with missing_ok = true.
>
> Thanks,
> --
> KaiGai Kohei <kaigai@kaigai.gr.jp>
>



--
KaiGai Kohei <kaigai@kaigai.gr.jp>

Attachment

pgsql-hackers by date:

Previous
From: Greg Sabino Mullane
Date:
Subject: Re: Overhead cost of Serializable Snapshot Isolation
Next
From: Kohei KaiGai
Date:
Subject: Re: [v9.2] DROP statement reworks