diff options
| author | Heikki Linnakangas | 2015-03-31 12:12:27 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2015-03-31 12:12:27 +0000 |
| commit | 1d0db8de043c28c1e665451663ec101da5adc5ab (patch) | |
| tree | 5eae21018c2202cede3fbd3888b0934276edb74b /src/backend/replication | |
| parent | fa1e5afa8a26d467aec7c8b36a0b749b690f636c (diff) | |
Remove spurious semicolons.
Petr Jelinek
Diffstat (limited to 'src/backend/replication')
| -rw-r--r-- | src/backend/replication/repl_gram.y | 2 |
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; |
