aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index c56a4cba40e..16ebc12e193 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -2939,7 +2939,7 @@ dumpRowSecurity(Archive *fout, DumpOptions *dopt, RowSecurityInfo *rsinfo)
cmd = "SELECT";
else if (strcmp(rsinfo->rseccmd, "a") == 0)
cmd = "INSERT";
- else if (strcmp(rsinfo->rseccmd, "u") == 0)
+ else if (strcmp(rsinfo->rseccmd, "w") == 0)
cmd = "UPDATE";
else if (strcmp(rsinfo->rseccmd, "d") == 0)
cmd = "DELETE";