diff options
| author | Alexander Korotkov | 2024-09-19 11:34:00 +0000 |
|---|---|---|
| committer | Alexander Korotkov | 2024-09-19 11:34:00 +0000 |
| commit | a094e8b9e43e350798ea0c95b8967b8caf64bcbd (patch) | |
| tree | f15cd903c2718af863a79d5fd6bab33a54be81fe /src | |
| parent | 014f9f34d2527c14cdf4150863c053d2a117c1c7 (diff) | |
Fix order of includes in src/bin/pg_upgrade/info.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/pg_upgrade/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/info.c b/src/bin/pg_upgrade/info.c index 5883acc79c0..f83ded89cb4 100644 --- a/src/bin/pg_upgrade/info.c +++ b/src/bin/pg_upgrade/info.c @@ -11,8 +11,8 @@ #include "access/transam.h" #include "catalog/pg_class_d.h" -#include "pqexpbuffer.h" #include "pg_upgrade.h" +#include "pqexpbuffer.h" static void create_rel_filename_map(const char *old_data, const char *new_data, const DbInfo *old_db, const DbInfo *new_db, |
