pgsql: Fix variable lifespan in ExecInitCoerceToDomain(). - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix variable lifespan in ExecInitCoerceToDomain().
Date
Msg-id E1mhxip-0000mk-5z@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/01fc6527034a6f70ed44a078af8f636b1ab64947

Modified Files
--------------
src/backend/executor/execExpr.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Doc: clean up some places that mentioned template1 but not templ
Next
From: Tom Lane
Date:
Subject: pgsql: Ensure consistent logical replication of datetime and float8 val