mirror of
https://github.com/postgres/postgres.git
synced 2025-06-20 15:22:23 +03:00
Remove pg_dump/pg_dumpall support for dumping from pre-8.0 servers.
The need for dumping from such ancient servers has decreased to about nil in the field, so let's remove all the code that catered to it. Aside from removing a lot of boilerplate variant queries, this allows us to not have to cope with servers that don't have (a) schemas or (b) pg_depend. That means we can get rid of assorted squishy code around that. There may be some nonobvious additional simplifications possible, but this patch already removes about 1500 lines of code. I did not remove the ability for pg_restore to read custom-format archives generated by these old versions (and light testing says that that does still work). If you have an old server, you probably also have a pg_dump that will work with it; but you have an old custom-format backup file, that might be all you have. It'd be possible at this point to remove fmtQualifiedId()'s version argument, but I refrained since that would affect code outside pg_dump. Discussion: <2661.1475849167@sss.pgh.pa.us>
This commit is contained in:
@ -758,10 +758,9 @@ PostgreSQL documentation
|
||||
the dump. Instead fail if unable to lock a table within the specified
|
||||
<replaceable class="parameter">timeout</>. The timeout may be
|
||||
specified in any of the formats accepted by <command>SET
|
||||
statement_timeout</>. (Allowed values vary depending on the server
|
||||
statement_timeout</>. (Allowed formats vary depending on the server
|
||||
version you are dumping from, but an integer number of milliseconds
|
||||
is accepted by all versions since 7.3. This option is ignored when
|
||||
dumping from a pre-7.3 server.)
|
||||
is accepted by all versions.)
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@ -1172,7 +1171,7 @@ CREATE DATABASE foo WITH TEMPLATE template0;
|
||||
<productname>PostgreSQL</> server versions newer than
|
||||
<application>pg_dump</>'s version. <application>pg_dump</> can also
|
||||
dump from <productname>PostgreSQL</> servers older than its own version.
|
||||
(Currently, servers back to version 7.0 are supported.)
|
||||
(Currently, servers back to version 8.0 are supported.)
|
||||
However, <application>pg_dump</> cannot dump from
|
||||
<productname>PostgreSQL</> servers newer than its own major version;
|
||||
it will refuse to even try, rather than risk making an invalid dump.
|
||||
|
Reference in New Issue
Block a user