diff options
author | Tom Lane | 2025-03-17 16:53:50 +0000 |
---|---|---|
committer | Tom Lane | 2025-03-17 16:53:50 +0000 |
commit | ed762e94253d5dd7810da13b8dd802baa876c55e (patch) | |
tree | 7f38630ad10f295e1ab58e85e76352fa15245713 /src | |
parent | 3943f5cff6a66639d295a6f1922e54b79d2ab16f (diff) |
Unify wording of user-facing "row security" messages.
Row-level security is mostly referred to as "row security" in
user-facing messages. Commit cd3c45125 introduced one inconsistent
use of "row level security"; make that one match the rest.
Author: Kyotaro Horiguchi <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_restore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index d947b2d2068..337e64a8a29 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -508,7 +508,7 @@ usage(const char *progname) printf(_(" --no-data do not restore data\n")); printf(_(" --no-data-for-failed-tables do not restore data of tables that could not be\n" " created\n")); - printf(_(" --no-policies do not restore row level security policies\n")); + printf(_(" --no-policies do not restore row security policies\n")); printf(_(" --no-publications do not restore publications\n")); printf(_(" --no-schema do not restore schema\n")); printf(_(" --no-security-labels do not restore security labels\n")); |