summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2017-03-23 15:58:11 +0000
committerPeter Eisentraut2017-03-23 15:58:11 +0000
commit73561013e5aa44a1669b2cb4351f5e2b29485efb (patch)
treed0e53fb1188d25b6ded5032c6c73d2e39761cc38
parent128e6ee01dc9a8b7b0d3d3c8edc594ca9e51f993 (diff)
Remove trailing comma from enum definition
Author: Petr Jelinek <[email protected]>
-rw-r--r--src/include/replication/walreceiver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/replication/walreceiver.h b/src/include/replication/walreceiver.h
index fb55c30fa1..cc31bc6a34 100644
--- a/src/include/replication/walreceiver.h
+++ b/src/include/replication/walreceiver.h
@@ -175,7 +175,7 @@ typedef enum
WALRCV_OK_TUPLES, /* Query returned tuples. */
WALRCV_OK_COPY_IN, /* Query started COPY FROM. */
WALRCV_OK_COPY_OUT, /* Query started COPY TO. */
- WALRCV_OK_COPY_BOTH, /* Query started COPY BOTH replication protocol. */
+ WALRCV_OK_COPY_BOTH /* Query started COPY BOTH replication protocol. */
} WalRcvExecStatus;
/*