pgsql: Correct type of waitMode variable in ExecInsertIndexTuples().

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Correct type of waitMode variable in ExecInsertIndexTuples().
Date: 2015-08-15 15:12:47
Message-ID: E1ZQd8Z-0005NC-5Q@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Correct type of waitMode variable in ExecInsertIndexTuples().

It was a bool, even though it should be CEOUC_WAIT_MODE. That's unlikely
to have a negative effect with the current definition of bool (char),
but it's definitely wrong.

Discussion: 20150812084351(dot)GD8470(at)awork2(dot)anarazel(dot)de
Backpatch: 9.5, where ON CONFLICT was merged

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/6942663d1bde1e6d6e6da38710d3e6aade900e63

Modified Files
--------------
src/backend/executor/execIndexing.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2015-08-15 15:28:22 pgsql: Don't use function definitions looking like old-style ones.
Previous Message Andres Freund 2015-08-15 15:12:45 pgsql: Correct type of waitMode variable in ExecInsertIndexTuples().