diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-04-28 11:10:40 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-04-28 11:10:40 +0900 |
commit | 2c902bbf1911a3c3dd68b817209eca9be81e381c (patch) | |
tree | 1958bc8aea510c443e643055a104dfb0264e0cca /src/include/pg_config_manual.h | |
parent | ccfbd9287d70038518bdd3e85d7f5fd3dd1bb880 (diff) |
Remove durable_rename_excl()
ccfbd92 has replaced all existing in-core callers of this function in
favor of durable_rename(). durable_rename_excl() is by nature unsafe on
crashes happening at the wrong time, so just remove it.
Author: Nathan Bossart
Reviewed-by: Robert Haas, Kyotaro Horiguchi, Michael Paquier
Discussion: https://postgr.es/m/20220407182954.GA1231544@nathanxps13
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 84ce5a4a5d7..830804fdfbf 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -164,13 +164,6 @@ #endif /* - * Define this if your operating system supports link() - */ -#if !defined(WIN32) && !defined(__CYGWIN__) -#define HAVE_WORKING_LINK 1 -#endif - -/* * USE_POSIX_FADVISE controls whether Postgres will attempt to use the * posix_fadvise() kernel call. Usually the automatic configure tests are * sufficient, but some older Linux distributions had broken versions of |