diff options
author | Amit Kapila <akapila@postgresql.org> | 2023-04-24 08:37:58 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2023-04-24 08:37:58 +0530 |
commit | 19e65dff38bdccdf2cac7f2083342101df6bea57 (patch) | |
tree | 2c64c61d5f77ab2f92857d107f235d06278de75e /src/bin/psql/describe.c | |
parent | 244ab8c00c427d35901a6f1eb97e4e22b2916e7e (diff) |
Display 'password_required' option for \dRs+ command.
The commit c3afe8cf5a added a new subscription option 'password_required'
which should be shown with \dRs+ command.
Author: Vignesh C
Reviewed-by: Amit Kapila, Robert Haas
Discussion: https://postgr.es/m/CAA4eK1LRz5sCZxwCW6OtpjLtWPvRwBihQOM4jzQm6ppfpexqGA@mail.gmail.com
Discussion: https://postgr.es/m/9DFC88D3-1300-4DE8-ACBC-4CEF84399A53@enterprisedb.com
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 83a37ee6011..058e41e749c 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -6493,7 +6493,7 @@ describeSubscriptions(const char *pattern, bool verbose) PGresult *res; printQueryOpt myopt = pset.popt; static const bool translate_columns[] = {false, false, false, false, - false, false, false, false, false, false, false, false, false}; + false, false, false, false, false, false, false, false, false, false}; if (pset.sversion < 100000) { @@ -6551,8 +6551,10 @@ describeSubscriptions(const char *pattern, bool verbose) if (pset.sversion >= 160000) appendPQExpBuffer(&buf, ", suborigin AS \"%s\"\n" + ", subpasswordrequired AS \"%s\"\n" ", subrunasowner AS \"%s\"\n", gettext_noop("Origin"), + gettext_noop("Password required"), gettext_noop("Run as Owner?")); appendPQExpBuffer(&buf, |