pgsql: Add select_common_typmod()

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add select_common_typmod()
Date: 2020-10-27 17:11:09
Message-ID: E1kXSV3-0002gK-R7@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add select_common_typmod()

This accompanies select_common_type() and select_common_collation().
Typmods were previously combined using hand-coded logic in several
places. The logic in select_common_typmod() isn't very exciting, but
it makes the code more compact and readable in a few locations, and in
the future we can perhaps do more complicated things if desired.

As a small enhancement, the type unification of the direct and
aggregate arguments of hypothetical-set aggregates now unifies the
typmod as well using this new function, instead of just dropping it.

Reviewed-by: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
Discussion: https://www.postgresql.org/message-id/flat/97df3af9-8b5e-fb7f-a029-3eb7e80d7af9(at)2ndquadrant(dot)com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f893e68d761adbee7f888109b1adf76151e3e17a

Modified Files
--------------
src/backend/parser/analyze.c | 26 ++++++--------------------
src/backend/parser/parse_clause.c | 23 ++++++-----------------
src/backend/parser/parse_coerce.c | 37 +++++++++++++++++++++++++++++++++++++
src/backend/parser/parse_func.c | 8 ++++++--
src/include/parser/parse_coerce.h | 2 ++
5 files changed, 57 insertions(+), 39 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2020-10-27 17:32:44 pgsql: pg_dump: Lock all relations, not just plain tables
Previous Message Alvaro Herrera 2020-10-27 16:50:31 pgsql: Accept relations of any kind in LOCK TABLE