summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2015-08-11 12:32:48 +0200
committerAndres Freund <andres@anarazel.de>2015-08-11 12:32:48 +0200
commit3b425b7c02ccdabe3fb3a538d9174273a15f1e2e (patch)
tree3e7cc990eeb6df8ed6b5704369026a7c59c83ae4
parentb861678f50747727c00ffa671e7c2f2f5d25300d (diff)
Minor cleanups in slot related code.
Fix a bunch of typos, and remove two superflous includes. Author: Gurjeet Singh Discussion: CABwTF4Wh_dBCzTU=49pFXR6coR4NW1ynb+vBqT+Po=7fuq5iCw@mail.gmail.com Backpatch: 9.4
-rw-r--r--src/backend/replication/logical/logical.c3
-rw-r--r--src/backend/replication/slot.c4
2 files changed, 2 insertions, 5 deletions
diff --git a/src/backend/replication/logical/logical.c b/src/backend/replication/logical/logical.c
index 7643add6d2c..ee7d3268f02 100644
--- a/src/backend/replication/logical/logical.c
+++ b/src/backend/replication/logical/logical.c
@@ -28,9 +28,6 @@
#include "postgres.h"
-#include <unistd.h>
-#include <sys/stat.h>
-
#include "miscadmin.h"
#include "access/xact.h"
diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c
index f8544de6abf..abe8747fe4d 100644
--- a/src/backend/replication/slot.c
+++ b/src/backend/replication/slot.c
@@ -661,7 +661,7 @@ ReplicationSlotsComputeRequiredLSN(void)
/*
* Compute the oldest WAL LSN required by *logical* decoding slots..
*
- * Returns InvalidXLogRecPtr if logical decoding is disabled or no logicals
+ * Returns InvalidXLogRecPtr if logical decoding is disabled or no logical
* slots exist.
*
* NB: this returns a value >= ReplicationSlotsComputeRequiredLSN(), since it
@@ -876,7 +876,7 @@ StartupReplicationSlots(void)
}
/* ----
- * Manipulation of ondisk state of replication slots
+ * Manipulation of on-disk state of replication slots
*
* NB: none of the routines below should take any notice whether a slot is the
* current one or not, that's all handled a layer above.