aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2024-03-22 01:01:30 +0100
committerDaniel Gustafsson <dgustafsson@postgresql.org>2024-03-22 01:01:30 +0100
commit82c2192d9c866c965dc0e2b17df36ee3fbe26a8e (patch)
tree34733445e9fd5eb918e940813b6b812cbb058c16
parentd82cb467bbc292375283b40f5cc65868024c82b4 (diff)
downloadpostgresql-82c2192d9c866c965dc0e2b17df36ee3fbe26a8e.tar.gz
postgresql-82c2192d9c866c965dc0e2b17df36ee3fbe26a8e.zip
Fix typo in pg_dumpall role comments fix
Some last minute polish of the patch managed to break the SQL query for extracting the role comments due to fat-fingering. Per the buildfarm Xversion tests.
-rw-r--r--src/bin/pg_dump/pg_dumpall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c
index 90cc12426d7..27093220ab9 100644
--- a/src/bin/pg_dump/pg_dumpall.c
+++ b/src/bin/pg_dump/pg_dumpall.c
@@ -786,7 +786,7 @@ dumpRoles(PGconn *conn)
"rolcanlogin, rolconnlimit, rolpassword, "
"rolvaliduntil, rolreplication, "
"false as rolbypassrls, "
- "pg_catalog.shobj_description(oid, pg_authid') as rolcomment, "
+ "pg_catalog.shobj_description(oid, 'pg_authid') as rolcomment, "
"rolname = current_user AS is_current_user "
"FROM %s "
"ORDER BY 2", role_catalog);