Show opclass and opfamily related information in psql

Alexander Korotkov <akorotkov@postgresql.org>

Commit: b0b5e20cd8d1a58a8782d5dc806a5232db116e2f
Author: Alexander Korotkov <akorotkov@postgresql.org>
Date: 2020-03-08T10:33:16Z
Releases: 13.0
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

Files

PathChange+/−
doc/src/sgml/ref/psql-ref.sgml modified +91 −0
src/bin/psql/command.c modified +32 −1
src/bin/psql/describe.c modified +335 −0
src/bin/psql/describe.h modified +19 −0
src/bin/psql/help.c modified +4 −0
src/bin/psql/tab-complete.c modified +15 −1
src/test/regress/expected/psql.out modified +162 −0
src/test/regress/sql/psql.sql modified +18 −0

Documentation touched

Discussion