summaryrefslogtreecommitdiff
path: root/src/backend/replication
diff options
context:
space:
mode:
authorHeikki Linnakangas2015-03-31 12:12:27 +0000
committerHeikki Linnakangas2015-03-31 12:12:27 +0000
commit1d0db8de043c28c1e665451663ec101da5adc5ab (patch)
tree5eae21018c2202cede3fbd3888b0934276edb74b /src/backend/replication
parentfa1e5afa8a26d467aec7c8b36a0b749b690f636c (diff)
Remove spurious semicolons.
Petr Jelinek
Diffstat (limited to 'src/backend/replication')
-rw-r--r--src/backend/replication/repl_gram.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/repl_gram.y b/src/backend/replication/repl_gram.y
index 2a41eb148fd..7d6d154f9c2 100644
--- a/src/backend/replication/repl_gram.y
+++ b/src/backend/replication/repl_gram.y
@@ -226,7 +226,7 @@ start_logical_replication:
{
StartReplicationCmd *cmd;
cmd = makeNode(StartReplicationCmd);
- cmd->kind = REPLICATION_KIND_LOGICAL;;
+ cmd->kind = REPLICATION_KIND_LOGICAL;
cmd->slotname = $3;
cmd->startpoint = $5;
cmd->options = $6;