aboutsummaryrefslogtreecommitdiff
path: root/src/backend/postmaster/shell_archive.c
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2023-02-08 21:06:46 -0800
committerAndres Freund <andres@anarazel.de>2023-02-08 21:06:46 -0800
commit30b789eafed2cbbc3de9c9025a30eefdffacb79c (patch)
tree5ee6f2f2620b65ebfb69d018ce56c8211adf7df5 /src/backend/postmaster/shell_archive.c
parent28e626bde00efe8051fbd677227c97b1aa3c6a1a (diff)
downloadpostgresql-30b789eafed2cbbc3de9c9025a30eefdffacb79c.tar.gz
postgresql-30b789eafed2cbbc3de9c9025a30eefdffacb79c.zip
Remove uses of AssertVariableIsOfType() obsoleted by f2b73c8
Author: Nathan Bossart <nathandbossart@gmail.com> Discussion: https://postgr.es/m/20230208172705.GA451849@nathanxps13
Diffstat (limited to 'src/backend/postmaster/shell_archive.c')
-rw-r--r--src/backend/postmaster/shell_archive.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/postmaster/shell_archive.c b/src/backend/postmaster/shell_archive.c
index 806b81c3f22..7771b951b7b 100644
--- a/src/backend/postmaster/shell_archive.c
+++ b/src/backend/postmaster/shell_archive.c
@@ -29,8 +29,6 @@ static void shell_archive_shutdown(void);
void
shell_archive_init(ArchiveModuleCallbacks *cb)
{
- AssertVariableIsOfType(&shell_archive_init, ArchiveModuleInit);
-
cb->check_configured_cb = shell_archive_configured;
cb->archive_file_cb = shell_archive_file;
cb->shutdown_cb = shell_archive_shutdown;