From: Amit Langote <amitlangote09@gmail.com>
> It appears I had missed your reply, sorry.
>
> > + PgFdwModifyState *fmstate = resultRelInfo->ri_FdwState ?
> > +
> (PgFdwModifyState *) resultRelInfo->ri_FdwState :
> > + NULL;
> >
> > This can be written as:
> >
> > + PgFdwModifyState *fmstate = (PgFdwModifyState *)
> > + resultRelInfo->ri_FdwState;
>
> Facepalm, yes.
>
> Patch updated. Thanks for the review.
Thank you for picking this up.
Regards
Takayuki Tsunakawa