pgsql: Show opclass and opfamily related information in psql - Mailing list pgsql-committers

From Alexander Korotkov
Subject pgsql: Show opclass and opfamily related information in psql
Date
Msg-id E1jAtHN-0006Pk-1V@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Show opclass and opfamily related information in psql

This commit provides psql commands for listing operator classes, operator
families and its contents in psql.  New commands will be useful for exploring
capabilities of both builtin opclasses/opfamilies as well as
opclasses/opfamilies defined in extensions.

Discussion: https://postgr.es/m/1529675324.14193.5.camel%40postgrespro.ru
Author: Sergey Cherkashin, Nikita Glukhov, Alexander Korotkov
Reviewed-by: Michael Paquier, Alvaro Herrera, Arthur Zakirov
Reviewed-by: Kyotaro Horiguchi, Andres Freund

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/ref/psql-ref.sgml     |  91 ++++++++++
src/bin/psql/command.c             |  33 +++-
src/bin/psql/describe.c            | 335 +++++++++++++++++++++++++++++++++++++
src/bin/psql/describe.h            |  19 +++
src/bin/psql/help.c                |   4 +
src/bin/psql/tab-complete.c        |  16 +-
src/test/regress/expected/psql.out | 162 ++++++++++++++++++
src/test/regress/sql/psql.sql      |  18 ++
8 files changed, 676 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Peter Geoghegan
Date:
Subject: pgsql: pageinspect: Fix types used for bt_metap() columns.
Next
From: Tom Lane
Date:
Subject: pgsql: Add an explicit test to catch changes in checksumming calculatio