diff options
author | Nathan Bossart <nathan@postgresql.org> | 2023-07-28 10:07:44 -0700 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2023-07-28 10:07:44 -0700 |
commit | 6d982e3b3bd4a3a26d18639b05ca1535c260e669 (patch) | |
tree | 67608b4aed256ad5f77fba03fc81d047e58aa566 /doc/src | |
parent | e055b6be7ebb0de35570102327717c99d91fe540 (diff) | |
download | postgresql-6d982e3b3bd4a3a26d18639b05ca1535c260e669.tar.gz postgresql-6d982e3b3bd4a3a26d18639b05ca1535c260e669.zip |
Harmonize password reuse in vacuumdb, clusterdb, and reindexdb.
Commits 83dec5a712 and ff402ae11b taught vacuumdb to reuse
passwords instead of prompting repeatedly. However, the docs still
warn about repeated prompts, and this improvement was not applied
to clusterdb and reindexdb. This commit allows clusterdb and
reindexdb to reuse passwords just like vacuumdb does, and it
expunges the aforementioned warnings from the docs.
Reviewed-by: Gurjeet Singh, Zhang Mingli
Discussion: https://postgr.es/m/20230628045741.GA1813397%40nathanxps13
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/reindexdb.sgml | 14 | ||||
-rw-r--r-- | doc/src/sgml/ref/vacuumdb.sgml | 13 |
2 files changed, 0 insertions, 27 deletions
diff --git a/doc/src/sgml/ref/reindexdb.sgml b/doc/src/sgml/ref/reindexdb.sgml index 8cb8bf4fa39..8d9ced212f3 100644 --- a/doc/src/sgml/ref/reindexdb.sgml +++ b/doc/src/sgml/ref/reindexdb.sgml @@ -432,20 +432,6 @@ PostgreSQL documentation </refsect1> - - <refsect1> - <title>Notes</title> - - <para> - <application>reindexdb</application> might need to connect several - times to the <productname>PostgreSQL</productname> server, asking - for a password each time. It is convenient to have a - <filename>~/.pgpass</filename> file in such cases. See <xref - linkend="libpq-pgpass"/> for more information. - </para> - </refsect1> - - <refsect1> <title>Examples</title> diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml index da2393783b7..09356ea4fae 100644 --- a/doc/src/sgml/ref/vacuumdb.sgml +++ b/doc/src/sgml/ref/vacuumdb.sgml @@ -605,19 +605,6 @@ PostgreSQL documentation </refsect1> - - <refsect1> - <title>Notes</title> - - <para> - <application>vacuumdb</application> might need to connect several - times to the <productname>PostgreSQL</productname> server, asking - for a password each time. It is convenient to have a - <filename>~/.pgpass</filename> file in such cases. See <xref - linkend="libpq-pgpass"/> for more information. - </para> - </refsect1> - <refsect1> <title>Examples</title> |