[COMMITTERS] pgsql: Remove unnecessary casts of makeNode() result - Mailing list pgsql-committers

From Peter Eisentraut
Subject [COMMITTERS] pgsql: Remove unnecessary casts of makeNode() result
Date
Msg-id E1cKUQp-00029B-Te@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Remove unnecessary casts of makeNode() result

makeNode() is already a macro that has the right result pointer type, so
casting it again to the same type is unnecessary.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/158df30359025d74daee74a3b927fd07c3b1a413

Modified Files
--------------
src/backend/commands/tablecmds.c    |  2 +-
src/backend/executor/execQual.c     | 14 +++++++-------
src/backend/replication/repl_gram.y |  3 +--
src/backend/rewrite/rowsecurity.c   |  6 +++---
4 files changed, 12 insertions(+), 13 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Doc: improve index entry for "median".
Next
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Replace enum InhOption with simple boolean.