From fa3ee05e21af64af86bedcc919488300c4f9a92d Mon Sep 17 00:00:00 2001 From: Dilip Kumar Date: Wed, 24 Mar 2021 15:08:14 +0530 Subject: [PATCH v2 1/2] Show compression method in index describe --- src/bin/psql/describe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index eeac0ef..9d15324 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -1897,6 +1897,7 @@ describeOneTableDetails(const char *schemaname, if (pset.sversion >= 140000 && !pset.hide_compression && (tableinfo.relkind == RELKIND_RELATION || + tableinfo.relkind == RELKIND_INDEX || tableinfo.relkind == RELKIND_PARTITIONED_TABLE || tableinfo.relkind == RELKIND_MATVIEW)) { -- 1.8.3.1