mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Remove tabs after spaces in C comments
This was not changed in HEAD, but will be done later as part of a pgindent run. Future pgindent runs will also do this. Report by Tom Lane Backpatch through all supported branches, but not HEAD
This commit is contained in:
@@ -758,7 +758,7 @@ sendFileWithContent(const char *filename, const char *content)
|
||||
|
||||
/*
|
||||
* Include the tablespace directory pointed to by 'path' in the output tar
|
||||
* stream. If 'sizeonly' is true, we just calculate a total length and return
|
||||
* stream. If 'sizeonly' is true, we just calculate a total length and return
|
||||
* it, without actually sending anything.
|
||||
*
|
||||
* Only used to send auxiliary tablespaces, not PGDATA.
|
||||
|
@@ -516,7 +516,7 @@ SyncRepGetStandbyPriority(void)
|
||||
}
|
||||
|
||||
/*
|
||||
* Walk the specified queue from head. Set the state of any backends that
|
||||
* Walk the specified queue from head. Set the state of any backends that
|
||||
* need to be woken, remove them from the queue, and then wake them.
|
||||
* Pass all = true to wake whole queue; otherwise, just wake up to
|
||||
* the walsender's LSN.
|
||||
|
@@ -256,7 +256,7 @@ WalReceiverMain(void)
|
||||
|
||||
/*
|
||||
* If possible, make this process a group leader, so that the postmaster
|
||||
* can signal any child processes too. (walreceiver probably never has
|
||||
* can signal any child processes too. (walreceiver probably never has
|
||||
* any child processes, but for consistency we make all postmaster child
|
||||
* processes do this.)
|
||||
*/
|
||||
@@ -783,7 +783,7 @@ WalRcvQuickDieHandler(SIGNAL_ARGS)
|
||||
on_exit_reset();
|
||||
|
||||
/*
|
||||
* Note we do exit(2) not exit(0). This is to force the postmaster into a
|
||||
* Note we do exit(2) not exit(0). This is to force the postmaster into a
|
||||
* system reset cycle if some idiot DBA sends a manual SIGQUIT to a random
|
||||
* backend. This is necessary precisely because we don't clean up our
|
||||
* shared memory state. (The "dead man switch" mechanism in pmsignal.c
|
||||
|
@@ -284,7 +284,7 @@ RequestXLogStreaming(TimeLineID tli, XLogRecPtr recptr, const char *conninfo)
|
||||
* Returns the last+1 byte position that walreceiver has written.
|
||||
*
|
||||
* Optionally, returns the previous chunk start, that is the first byte
|
||||
* written in the most recent walreceiver flush cycle. Callers not
|
||||
* written in the most recent walreceiver flush cycle. Callers not
|
||||
* interested in that value may pass NULL for latestChunkStart. Same for
|
||||
* receiveTLI.
|
||||
*/
|
||||
|
@@ -72,7 +72,7 @@
|
||||
#include "utils/timestamp.h"
|
||||
|
||||
/*
|
||||
* Maximum data payload in a WAL data message. Must be >= XLOG_BLCKSZ.
|
||||
* Maximum data payload in a WAL data message. Must be >= XLOG_BLCKSZ.
|
||||
*
|
||||
* We don't have a good idea of what a good value would be; there's some
|
||||
* overhead per message in both walsender and walreceiver, but on the other
|
||||
@@ -942,7 +942,7 @@ ProcessStandbyHSFeedbackMessage(void)
|
||||
* perhaps far enough to make feedbackXmin wrap around. In that case the
|
||||
* xmin we set here would be "in the future" and have no effect. No point
|
||||
* in worrying about this since it's too late to save the desired data
|
||||
* anyway. Assuming that the standby sends us an increasing sequence of
|
||||
* anyway. Assuming that the standby sends us an increasing sequence of
|
||||
* xmins, this could only happen during the first reply cycle, else our
|
||||
* own xmin would prevent nextXid from advancing so far.
|
||||
*
|
||||
@@ -1526,7 +1526,7 @@ XLogSend(bool *caughtup)
|
||||
*
|
||||
* Attempt to send all data that's already been written out and
|
||||
* fsync'd to disk. We cannot go further than what's been written out
|
||||
* given the current implementation of XLogRead(). And in any case
|
||||
* given the current implementation of XLogRead(). And in any case
|
||||
* it's unsafe to send WAL that is not securely down to disk on the
|
||||
* master: if the master subsequently crashes and restarts, slaves
|
||||
* must not have applied any WAL that gets lost on the master.
|
||||
|
Reference in New Issue
Block a user