diff options
| author | Peter Eisentraut | 2024-03-13 14:07:00 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2024-03-13 14:07:00 +0000 |
| commit | 97d85be365443eb4bf84373a7468624762382059 (patch) | |
| tree | 53feeeca410eb9925eb3dd02114fe047f64c72c7 /src/bin | |
| parent | 97d4262683acb586778af2b2a3721fa7cdc402f1 (diff) | |
Make the order of the header file includes consistent
Similar to commit 7e735035f20.
Author: Richard Guo <guofenglinux@gmail.com>
Reviewed-by: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/CAMbWs4-WhpCFMbXCjtJ%2BFzmjfPrp7Hw1pk4p%2BZpU95Kh3ofZ1A%40mail.gmail.com
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/pg_basebackup/bbstreamer_file.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_basebackup/bbstreamer_gzip.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_basebackup/bbstreamer_lz4.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_combinebackup/backup_label.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_combinebackup/pg_combinebackup.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_combinebackup/reconstruct.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_dump/compress_lz4.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_dump/compress_zstd.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_upgrade/controldata.c | 2 | ||||
| -rw-r--r-- | src/bin/pg_walsummary/pg_walsummary.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/bin/pg_basebackup/bbstreamer_file.c b/src/bin/pg_basebackup/bbstreamer_file.c index fd89012487a..0be39dddc97 100644 --- a/src/bin/pg_basebackup/bbstreamer_file.c +++ b/src/bin/pg_basebackup/bbstreamer_file.c @@ -14,8 +14,8 @@ #include <unistd.h> #include "bbstreamer.h" -#include "common/logging.h" #include "common/file_perm.h" +#include "common/logging.h" #include "common/string.h" typedef struct bbstreamer_plain_writer diff --git a/src/bin/pg_basebackup/bbstreamer_gzip.c b/src/bin/pg_basebackup/bbstreamer_gzip.c index 2fd704031d5..4659314afd2 100644 --- a/src/bin/pg_basebackup/bbstreamer_gzip.c +++ b/src/bin/pg_basebackup/bbstreamer_gzip.c @@ -18,8 +18,8 @@ #endif #include "bbstreamer.h" -#include "common/logging.h" #include "common/file_perm.h" +#include "common/logging.h" #include "common/string.h" #ifdef HAVE_LIBZ diff --git a/src/bin/pg_basebackup/bbstreamer_lz4.c b/src/bin/pg_basebackup/bbstreamer_lz4.c index ab1209fd1a8..eda62caeded 100644 --- a/src/bin/pg_basebackup/bbstreamer_lz4.c +++ b/src/bin/pg_basebackup/bbstreamer_lz4.c @@ -18,8 +18,8 @@ #endif #include "bbstreamer.h" -#include "common/logging.h" #include "common/file_perm.h" +#include "common/logging.h" #include "common/string.h" #ifdef USE_LZ4 diff --git a/src/bin/pg_combinebackup/backup_label.c b/src/bin/pg_combinebackup/backup_label.c index 9c1a6e2db2b..b962927e708 100644 --- a/src/bin/pg_combinebackup/backup_label.c +++ b/src/bin/pg_combinebackup/backup_label.c @@ -15,8 +15,8 @@ #include "access/xlogdefs.h" #include "backup_label.h" -#include "common/logging.h" #include "common/file_perm.h" +#include "common/logging.h" #include "write_manifest.h" static int get_eol_offset(StringInfo buf); diff --git a/src/bin/pg_combinebackup/pg_combinebackup.c b/src/bin/pg_combinebackup/pg_combinebackup.c index 430edcbf5d5..60e62d03b19 100644 --- a/src/bin/pg_combinebackup/pg_combinebackup.c +++ b/src/bin/pg_combinebackup/pg_combinebackup.c @@ -25,9 +25,9 @@ #include "common/logging.h" #include "copy_file.h" #include "fe_utils/option_utils.h" +#include "getopt_long.h" #include "lib/stringinfo.h" #include "load_manifest.h" -#include "getopt_long.h" #include "reconstruct.h" #include "write_manifest.h" diff --git a/src/bin/pg_combinebackup/reconstruct.c b/src/bin/pg_combinebackup/reconstruct.c index b0b246f1f13..41f06bb26b5 100644 --- a/src/bin/pg_combinebackup/reconstruct.c +++ b/src/bin/pg_combinebackup/reconstruct.c @@ -15,8 +15,8 @@ #include <unistd.h> #include "backup/basebackup_incremental.h" -#include "common/logging.h" #include "common/file_perm.h" +#include "common/logging.h" #include "copy_file.h" #include "lib/stringinfo.h" #include "reconstruct.h" diff --git a/src/bin/pg_dump/compress_lz4.c b/src/bin/pg_dump/compress_lz4.c index 8a01d31f743..7f72492beaf 100644 --- a/src/bin/pg_dump/compress_lz4.c +++ b/src/bin/pg_dump/compress_lz4.c @@ -12,9 +12,9 @@ *------------------------------------------------------------------------- */ #include "postgres_fe.h" -#include "pg_backup_utils.h" #include "compress_lz4.h" +#include "pg_backup_utils.h" #ifdef USE_LZ4 #include <lz4frame.h> diff --git a/src/bin/pg_dump/compress_zstd.c b/src/bin/pg_dump/compress_zstd.c index d6a3bb68ba0..aa5aff2fee3 100644 --- a/src/bin/pg_dump/compress_zstd.c +++ b/src/bin/pg_dump/compress_zstd.c @@ -14,8 +14,8 @@ #include "postgres_fe.h" -#include "pg_backup_utils.h" #include "compress_zstd.h" +#include "pg_backup_utils.h" #ifndef USE_ZSTD diff --git a/src/bin/pg_upgrade/controldata.c b/src/bin/pg_upgrade/controldata.c index 3c836c7c132..1f0ccea3ed1 100644 --- a/src/bin/pg_upgrade/controldata.c +++ b/src/bin/pg_upgrade/controldata.c @@ -11,8 +11,8 @@ #include <ctype.h> -#include "pg_upgrade.h" #include "common/string.h" +#include "pg_upgrade.h" /* diff --git a/src/bin/pg_walsummary/pg_walsummary.c b/src/bin/pg_walsummary/pg_walsummary.c index 485c72d9395..5e41b376d7b 100644 --- a/src/bin/pg_walsummary/pg_walsummary.c +++ b/src/bin/pg_walsummary/pg_walsummary.c @@ -19,8 +19,8 @@ #include "common/int.h" #include "common/logging.h" #include "fe_utils/option_utils.h" -#include "lib/stringinfo.h" #include "getopt_long.h" +#include "lib/stringinfo.h" typedef struct ws_options { |
