Thread: Re: [GENERAL] Accessing RelOptInfo structure from the executor module

Re: [GENERAL] Accessing RelOptInfo structure from the executor module

From
Tom Lane
Date:
Shalu Gupta <sgupta5@unity.ncsu.edu> writes:
>  I want to access the RelOptInfo data structure from the executor module.

You can't, because it doesn't exist any more.  RelOptInfo is a planner
internal data structure, and is probably pfree'd before the executor starts.

Perhaps you could explain your problem at a higher level?

            regards, tom lane