Fix variable lifespan in ExecInitCoerceToDomain().

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

Commit: ada667b45496998674818e135e9cd6580f1bc019
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2021-11-02T17:36:57Z
Releases: 13.5
Fix variable lifespan in ExecInitCoerceToDomain().

This undoes a mistake in 1ec7679f1: domainval and domainnull were
meant to live across loop iterations, but they were incorrectly
moved inside the loop.  The effect was only to emit useless extra
EEOP_MAKE_READONLY steps, so it's not a big deal; nonetheless,
back-patch to v13 where the mistake was introduced.

Ranier Vilela

Discussion: https://postgr.es/m/CAEudQAqXuhbkaAp-sGH6dR6Nsq7v28_0TPexHOm6FiDYqwQD-w@mail.gmail.com

Files

PathChange+/−
src/backend/executor/execExpr.c modified +2 −2

Discussion