v4-0007-Updated-psql-s-describe-roles-meta-command.patch
application/octet-stream
Filename: v4-0007-Updated-psql-s-describe-roles-meta-command.patch
Type: application/octet-stream
Part: 7
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v4-0007
Subject: Updated psql's describe-roles meta-command
| File | + | − |
|---|---|---|
| src/bin/psql/describe.c | 1 | 1 |
From 739c33fd9b0c7e06a8be5b77ee425c186bf33a26 Mon Sep 17 00:00:00 2001
From: Gurjeet Singh <gurjeet@singh.im>
Date: Mon, 9 Oct 2023 21:41:51 -0700
Subject: [PATCH v4 07/11] Updated psql's describe-roles meta-command
---
src/bin/psql/describe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index bac94a338c..485654dd7c 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -3675,7 +3675,7 @@ describeRoles(const char *pattern, bool verbose, bool showSystem)
printfPQExpBuffer(&buf,
"SELECT r.rolname, r.rolsuper, r.rolinherit,\n"
" r.rolcreaterole, r.rolcreatedb, r.rolcanlogin,\n"
- " r.rolconnlimit, r.rolvaliduntil");
+ " r.rolconnlimit, r.rolvaliduntil, r.rolsecondvaliduntil");
if (verbose)
{
--
2.41.0