diff options
| author | Robert Haas | 2022-02-08 16:17:21 +0000 |
|---|---|---|
| committer | Robert Haas | 2022-02-10 17:12:43 +0000 |
| commit | 0d4513b6138650355fcc981a9f34ff57b8d69db4 (patch) | |
| tree | 71050283413e5c8211595b250b784c3b6ec684b5 /src/include/replication | |
| parent | d37776e451e3481d7364137a0b159102bb05992a (diff) | |
Remove server support for the previous base backup protocol.
Commit cc333f32336f5146b75190f57ef587dff225f565 added a new COPY
sub-protocol for taking base backups, but retained support for the
previous protocol. For the same reasons articulated in the message
for commit 9cd28c2e5f11dfeef64a14035b82e70acead65fd, remove support
for the previous protocol from the server.
Discussion: http://postgr.es/m/CA+TgmoazKcKUWtqVa0xZqSzbKgTH+X-aw4V7GyLD68EpDLMh8A@mail.gmail.com
Diffstat (limited to 'src/include/replication')
| -rw-r--r-- | src/include/replication/basebackup_sink.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/replication/basebackup_sink.h b/src/include/replication/basebackup_sink.h index d3276b2487b..2cfa816bb81 100644 --- a/src/include/replication/basebackup_sink.h +++ b/src/include/replication/basebackup_sink.h @@ -283,7 +283,6 @@ extern void bbsink_forward_cleanup(bbsink *sink); /* Constructors for various types of sinks. */ extern bbsink *bbsink_copystream_new(bool send_to_client); -extern bbsink *bbsink_copytblspc_new(void); extern bbsink *bbsink_gzip_new(bbsink *next, int compresslevel); extern bbsink *bbsink_progress_new(bbsink *next, bool estimate_backup_size); extern bbsink *bbsink_server_new(bbsink *next, char *pathname); |
