aboutsummaryrefslogtreecommitdiff
path: root/contrib/test_decoding/test_decoding.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2014-03-12 14:03:09 -0400
committerRobert Haas <rhaas@postgresql.org>2014-03-12 14:03:09 -0400
commit890194f14d6ff6838d79215b8ba62786185aa9a2 (patch)
tree4b013f8e96593b2724ba2476c294bc700b3b450d /contrib/test_decoding/test_decoding.c
parentc5608ea26a1f51998ad3cf987c3f0bda643c87a8 (diff)
downloadpostgresql-890194f14d6ff6838d79215b8ba62786185aa9a2.tar.gz
postgresql-890194f14d6ff6838d79215b8ba62786185aa9a2.zip
Comment fixes related to logical decoding.
Andres Freund, per complaints by Peter Eisentraut.
Diffstat (limited to 'contrib/test_decoding/test_decoding.c')
-rw-r--r--contrib/test_decoding/test_decoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_decoding/test_decoding.c b/contrib/test_decoding/test_decoding.c
index e356c7ca675..31aa0122d8c 100644
--- a/contrib/test_decoding/test_decoding.c
+++ b/contrib/test_decoding/test_decoding.c
@@ -33,6 +33,7 @@
PG_MODULE_MAGIC;
+/* These must be available to pg_dlsym() */
extern void _PG_init(void);
extern void _PG_output_plugin_init(OutputPluginCallbacks *cb);
@@ -43,7 +44,6 @@ typedef struct
bool include_timestamp;
} TestDecodingData;
-/* These must be available to pg_dlsym() */
static void pg_decode_startup(LogicalDecodingContext *ctx, OutputPluginOptions *opt,
bool is_init);
static void pg_decode_shutdown(LogicalDecodingContext *ctx);