pgsql: Fix psql describe commands' handling of ACL columns for old serv - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix psql describe commands' handling of ACL columns for old serv
Date
Msg-id E1stCyb-000k7v-EJ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix psql describe commands' handling of ACL columns for old servers.

Commit d1379ebf4 carelessly broke printACLColumn for pre-9.4 servers,
by using the cardinality() function which we introduced in 9.4.
We expect psql's describe-related commands to work back to 9.2, so
this is bad.  Use the longstanding array_length() function instead.

Per report from Christoph Berg.  Back-patch to v17.

Discussion: https://postgr.es/m/ZvLXYglRS6hMMhtr@msg.df7cb.de

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/923a71584fd7efb5302cb8bf5a5bd417b531123f

Modified Files
--------------
src/bin/psql/describe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix psql describe commands' handling of ACL columns for old serv
Next
From: Jeff Davis
Date:
Subject: pgsql: Allow length=-1 for NUL-terminated input to pg_strncoll(), etc.