]> granicus.if.org Git - postgresql/commit
Fix two undocumented parameters to functions from ENR patch.
authorKevin Grittner <kgrittn@postgresql.org>
Sat, 1 Apr 2017 20:21:05 +0000 (15:21 -0500)
committerKevin Grittner <kgrittn@postgresql.org>
Sat, 1 Apr 2017 20:21:05 +0000 (15:21 -0500)
commit41bd155dd656e7f17c02855be7aff234843347cd
tree2b5181cbab8739e2772fa0eb3d7f72d6df0a795f
parentc655899ba9ae2a0d24e99c797167c33e0cfa0820
Fix two undocumented parameters to functions from ENR patch.

On ProcessUtility document the parameter, to match others.

On CreateCachedPlan drop the queryEnv parameter.  It was not
referenced within the function, and had been added on the
assumption that with some unknown future usage of QueryEnvironment
it might be useful to do something there.  We have avoided other
"just in case" implementation of unused paramters, so drop it here.

Per gripe from Tom Lane
src/backend/commands/prepare.c
src/backend/executor/spi.c
src/backend/tcop/postgres.c
src/backend/tcop/utility.c
src/backend/utils/cache/plancache.c
src/include/utils/plancache.h