From fd717d6da96b9dc18c7f8f2ba05d5497f8487fa6 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 20 Jan 2017 22:27:50 -0800 Subject: [PATCH] Consistently libpq forward declaration in remote_commands.h. --- src/include/distributed/remote_commands.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/distributed/remote_commands.h b/src/include/distributed/remote_commands.h index b95454947..178dc2f7a 100644 --- a/src/include/distributed/remote_commands.h +++ b/src/include/distributed/remote_commands.h @@ -39,7 +39,7 @@ extern void ExecuteCriticalRemoteCommand(MultiConnection *connection, const char *command); extern int ExecuteOptionalRemoteCommand(MultiConnection *connection, const char *command, - PGresult **result); + struct pg_result **result); extern int SendRemoteCommand(MultiConnection *connection, const char *command); extern int SendRemoteCommandParams(MultiConnection *connection, const char *command, int parameterCount, const Oid *parameterTypes,