Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dddf4cd

Browse files
author
Amit Kapila
committedOct 25, 2019
Make the order of the header file includes consistent in non-backend modules.
Similar to commit 7e73503, this commit makes the order of header file inclusion consistent for non-backend modules. In passing, fix the case where we were using angle brackets (<>) for the local module includes instead of quotes (""). Author: Vignesh C Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CALDaNm2Sznv8RR6Ex-iJO6xAdsxgWhCoETkaYX=+9DW3q0QCfA@mail.gmail.com
1 parent 8270a0d commit dddf4cd

File tree

102 files changed

+237
-345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+237
-345
lines changed
 

‎src/bin/pg_archivecleanup/pg_archivecleanup.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
#include <signal.h>
1616
#include <sys/time.h>
1717

18-
#include "pg_getopt.h"
19-
20-
#include "common/logging.h"
21-
2218
#include "access/xlog_internal.h"
19+
#include "common/logging.h"
20+
#include "pg_getopt.h"
2321

2422
const char *progname;
2523

‎src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
#include "fe_utils/string_utils.h"
3636
#include "getopt_long.h"
3737
#include "libpq-fe.h"
38-
#include "pqexpbuffer.h"
3938
#include "pgtar.h"
4039
#include "pgtime.h"
40+
#include "pqexpbuffer.h"
4141
#include "receivelog.h"
4242
#include "replication/basebackup.h"
4343
#include "streamutil.h"

0 commit comments

Comments
 (0)