diff options
author | Andres Freund <andres@anarazel.de> | 2023-02-08 21:06:46 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-02-08 21:06:46 -0800 |
commit | 30b789eafed2cbbc3de9c9025a30eefdffacb79c (patch) | |
tree | 5ee6f2f2620b65ebfb69d018ce56c8211adf7df5 /src | |
parent | 28e626bde00efe8051fbd677227c97b1aa3c6a1a (diff) | |
download | postgresql-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')
-rw-r--r-- | src/backend/postmaster/shell_archive.c | 2 | ||||
-rw-r--r-- | src/backend/replication/pgoutput/pgoutput.c | 2 |
2 files changed, 0 insertions, 4 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; diff --git a/src/backend/replication/pgoutput/pgoutput.c b/src/backend/replication/pgoutput/pgoutput.c index 73b080060da..98377c094b4 100644 --- a/src/backend/replication/pgoutput/pgoutput.c +++ b/src/backend/replication/pgoutput/pgoutput.c @@ -248,8 +248,6 @@ static void pgoutput_column_list_init(PGOutputData *data, void _PG_output_plugin_init(OutputPluginCallbacks *cb) { - AssertVariableIsOfType(&_PG_output_plugin_init, LogicalOutputPluginInit); - cb->startup_cb = pgoutput_startup; cb->begin_cb = pgoutput_begin_txn; cb->change_cb = pgoutput_change; |