Hi,

The current code:


      if (!qual && !projInfo)
      {
            ResetExprContext(econtext);
            return ExecScanFetch(node, epqstate, accessMtd, recheckMtd);
      }


      ResetExprContext(econtext);


The following format might be simpler:


      ResetExprContext(econtext);


      if (!qual && !projInfo)
            return ExecScanFetch(node, epqstate, accessMtd, recheckMtd);


Attach a patch to do this.


--
Regards,
ChangAo Chen

Attachment: v1-0001-Minor-refactor-of-the-code-in-ExecScanExtended.patch
Description: Binary data

Reply via email to