From: Fujii Masao Date: Mon, 24 Apr 2017 16:31:42 +0000 (+0900) Subject: Get rid of extern declarations of non-existent functions. X-Git-Tag: REL_10_BETA1~193 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cbc2270e3fcfae0831e4aa22f797f1dcac483d46;p=thirdparty%2Fpostgresql.git Get rid of extern declarations of non-existent functions. Those extern declartions were mistakenly added by commit 7c4f52409. Author: Petr Jelinek --- diff --git a/src/include/replication/logical.h b/src/include/replication/logical.h index 7d6c88efe34..f012735f14e 100644 --- a/src/include/replication/logical.h +++ b/src/include/replication/logical.h @@ -95,12 +95,6 @@ extern void DecodingContextFindStartpoint(LogicalDecodingContext *ctx); extern bool DecodingContextReady(LogicalDecodingContext *ctx); extern void FreeDecodingContext(LogicalDecodingContext *ctx); -extern LogicalDecodingContext *CreateCopyDecodingContext( - List *output_plugin_options, - LogicalOutputPluginWriterPrepareWrite prepare_write, - LogicalOutputPluginWriterWrite do_write); -extern List *DecodingContextGetTableList(LogicalDecodingContext *ctx); - extern void LogicalIncreaseXminForSlot(XLogRecPtr lsn, TransactionId xmin); extern void LogicalIncreaseRestartDecodingForSlot(XLogRecPtr current_lsn, XLogRecPtr restart_lsn);