Use ExecPrepareExpr in place of ExecPrepareCheck where appropriate.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 9b95f2fa1e2684fa209a3594db2254b8841bf380
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2017-03-26T22:14:03Z
Releases: 10.0
Use ExecPrepareExpr in place of ExecPrepareCheck where appropriate.

Change one more place where ExecInitCheck/ExecPrepareCheck's insistence
on getting implicit-AND-format quals wasn't really helpful, because the
caller had to do make_ands_implicit() for no reason that it cared about.
Using ExecPrepareExpr directly simplifies the code and saves cycles.

The only remaining use of these functions is to process
resultRelInfo->ri_PartitionCheck quals.  However, implicit-AND format
does seem to be what we want for that, so leave it alone.

Files

PathChange+/−
src/backend/catalog/partition.c modified +5 −1
src/backend/commands/tablecmds.c modified +10 −12