pgsql: Fix findoidjoins to recognize oidvector columns.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix findoidjoins to recognize oidvector columns.
Date: 2020-05-09 20:28:31
Message-ID: E1jXW5H-0002Wc-R5@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix findoidjoins to recognize oidvector columns.

Somehow we'd never noticed this oversight, even though it means
that such basic columns as pg_proc.proargtypes were not being
validated by the oidjoins test. Correct the query and update
the test script with the newly-found dependencies.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/96d175e3e2ea1bbf734f21444126a711da12108b

Modified Files
--------------
src/test/regress/expected/oidjoins.out | 40 ++++++++++++++++++++++++++++++++++
src/test/regress/sql/oidjoins.sql | 20 +++++++++++++++++
src/tools/findoidjoins/README | 5 +++++
src/tools/findoidjoins/findoidjoins.c | 2 +-
4 files changed, 66 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2020-05-09 23:09:55 pgsql: Doc: fix assorted misstatements of fact in catalog & system view
Previous Message Tomas Vondra 2020-05-09 17:42:03 pgsql: Simplify show_incremental_sort_info a bit