diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-05-31 12:14:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-05-31 12:14:02 -0400 |
commit | 492046fa9ed4a236d490f56bc5afcaa2f3b6ad6c (patch) | |
tree | cca61bfb22ef03592d1d0c798fc71cbb8b131a9a | |
parent | f5bfba5413f51b4fa0a7b0dc879d39ae6881d8be (diff) | |
download | postgresql-492046fa9ed4a236d490f56bc5afcaa2f3b6ad6c.tar.gz postgresql-492046fa9ed4a236d490f56bc5afcaa2f3b6ad6c.zip |
Doc: fix mention of pg_dump's minimum supported server version.
runtime.sgml contains a passing reference to the minimum server
version that pg_dump[all] can dump from. That was 7.0 for many
years, but when 64f3524e2 raised it to 8.0, we missed updating this
bit. Then when 30e7c175b raised it to 9.2, we missed it again.
Given that track record, I'm not too hopeful that we'll remember
to fix this in future changes ... but for now, make the docs match
reality in each branch.
Noted by Daniel Westermann.
Discussion: https://postgr.es/m/GV0P278MB041917EB3E2FE8704B5AE2C6D2DC9@GV0P278MB0419.CHEP278.PROD.OUTLOOK.COM
-rw-r--r-- | doc/src/sgml/runtime.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 62cec614d37..5d98843c884 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1770,7 +1770,7 @@ $ <userinput>kill -INT `head -1 /usr/local/pgsql/data/postmaster.pid`</userinput version of <productname>PostgreSQL</productname>, to take advantage of enhancements that might have been made in these programs. Current releases of the - dump programs can read data from any server version back to 7.0. + dump programs can read data from any server version back to 9.2. </para> <para> |