1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-19 04:21:08 +03:00

Remove uses of AssertVariableIsOfType() obsoleted by f2b73c8

Author: Nathan Bossart <nathandbossart@gmail.com>
Discussion: https://postgr.es/m/20230208172705.GA451849@nathanxps13
This commit is contained in:
Andres Freund
2023-02-08 21:06:46 -08:00
parent 28e626bde0
commit 30b789eafe
4 changed files with 0 additions and 8 deletions

View File

@ -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;

View File

@ -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;