diff options
author | Thomas Munro <tmunro@postgresql.org> | 2021-01-29 13:21:53 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2021-01-29 14:09:41 +1300 |
commit | 514b411a2b5226167add9ab139d3a96dbe98035d (patch) | |
tree | 13c8640e721634c7221f7d1377b5e1c3d2a8c853 /src/backend/access/transam/xlog.c | |
parent | 1046dbedde2fc3fe55f007ff3255ab65ab98f858 (diff) | |
download | postgresql-514b411a2b5226167add9ab139d3a96dbe98035d.tar.gz postgresql-514b411a2b5226167add9ab139d3a96dbe98035d.zip |
Retire pg_standby.
pg_standby was useful more than a decade ago, but now it is obsolete.
It has been proposed that we retire it many times. Now seems like a
good time to finally do it, because "waiting restore commands"
are incompatible with a proposed recovery prefetching feature.
Discussion: https://postgr.es/m/20201029024412.GP5380%40telsasoft.com
Author: Justin Pryzby <pryzby@telsasoft.com>
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Reviewed-by: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Reviewed-by: Fujii Masao <masao.fujii@oss.nttdata.com>
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 236a66f6387..f03bd473e2b 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4199,7 +4199,7 @@ RemoveXlogFile(const char *segname, XLogSegNo recycleSegNo, /* * Before deleting the file, see if it can be recycled as a future log - * segment. Only recycle normal files, pg_standby for example can create + * segment. Only recycle normal files, because we don't want to recycle * symbolic links pointing to a separate archive directory. */ if (wal_recycle && |