pgsql: Add DISTINCT to information schema usage views - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Add DISTINCT to information schema usage views
Date
Msg-id E1lZAA8-0001hR-8l@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Add DISTINCT to information schema usage views  (David Rowley <dgrowleyml@gmail.com>)
List pgsql-committers
Add DISTINCT to information schema usage views

Since pg_depend can contain duplicate entries, we need to eliminate
those in information schema views that build on pg_depend, using
DISTINCT.  Some of the older views already did that correctly, but
some of the more recently added ones didn't.  (In some of these views,
it might not be possible to reproduce the issue because of how the
implementation happens to deduplicate dependencies while recording
them, but it seems better to keep this consistent in all cases.)

Branch
------
master

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

Modified Files
--------------
src/backend/catalog/information_schema.sql | 18 ++++++++++++------
src/include/catalog/catversion.h           |  2 +-
2 files changed, 13 insertions(+), 7 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Use correct format placeholder for timeline IDs
Next
From: David Rowley
Date:
Subject: Re: pgsql: Add DISTINCT to information schema usage views