Unify a recently-added inconsisnt message

From: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Unify a recently-added inconsisnt message
Date: 2025-03-17 04:53:05
Message-ID: 20250317.135305.573764276033358827.horikyota.ntt@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Subject: Unify a recent-added inconsisnt message

Hello.

I noticed that the recent commit cd3c45125d2 introduced the following
three inconsistent messages at the same time:

pg_dump.c:
+ printf(_(" --no-policies do not dump row security policies\n"));

pg_dumpall.c:
+ printf(_(" --no-policies do not dump row security policies\n"));

pg_restore.c:
+ printf(_(" --no-policies do not restore row level security policies\n"));

The existing user-facing messages commonly use "row security".
Therefore, I believe the newly introduced message should follow the
same wording for consistency.

Please find the attached patch that updates the inconsistent message.

--
Kyotaro Horiguchi
NTT Open Source Software Center

Attachment Content-Type Size
0001-Unify-wording-of-user-facing-row-security.patch text/x-patch 1.5 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2025-03-17 05:11:30 Re: More Perl cleanups
Previous Message Daniil Davydov 2025-03-17 04:49:45 Re: Introduce new multi insert Table AM and improve performance of various SQL commands with it for Heap AM