pgsql: Add DISTINCT to information schema usage views

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Add DISTINCT to information schema usage views
Дата
Msg-id E1lZAA8-0001hR-8l@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Add DISTINCT to information schema usage views  (David Rowley <dgrowleyml@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Use correct format placeholder for timeline IDs
Следующее
От: David Rowley
Дата:
Сообщение: Re: pgsql: Add DISTINCT to information schema usage views