Make the order of the header file includes consistent in non-backend modules.

Similar to commit 7e735035f2, 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
This commit is contained in:
Amit Kapila 2019-10-23 09:38:53 +05:30
parent 8270a0d9a9
commit dddf4cdc33
102 changed files with 238 additions and 346 deletions

View File

@ -15,11 +15,9 @@
#include <signal.h> #include <signal.h>
#include <sys/time.h> #include <sys/time.h>
#include "pg_getopt.h"
#include "common/logging.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "common/logging.h"
#include "pg_getopt.h"
const char *progname; const char *progname;

View File

@ -35,9 +35,9 @@
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "libpq-fe.h" #include "libpq-fe.h"
#include "pqexpbuffer.h"
#include "pgtar.h" #include "pgtar.h"
#include "pgtime.h" #include "pgtime.h"
#include "pqexpbuffer.h"
#include "receivelog.h" #include "receivelog.h"
#include "replication/basebackup.h" #include "replication/basebackup.h"
#include "streamutil.h" #include "streamutil.h"

View File

@ -19,16 +19,14 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "access/xlog_internal.h"
#include "common/file_perm.h" #include "common/file_perm.h"
#include "common/logging.h" #include "common/logging.h"
#include "libpq-fe.h"
#include "access/xlog_internal.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "libpq-fe.h"
#include "receivelog.h" #include "receivelog.h"
#include "streamutil.h" #include "streamutil.h"
/* Time to sleep between reconnection attempts */ /* Time to sleep between reconnection attempts */
#define RECONNECT_SLEEP_TIME 5 #define RECONNECT_SLEEP_TIME 5

View File

@ -19,18 +19,15 @@
#include <sys/select.h> #include <sys/select.h>
#endif #endif
/* local includes */
#include "streamutil.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "common/file_perm.h"
#include "common/fe_memutils.h" #include "common/fe_memutils.h"
#include "common/file_perm.h"
#include "common/logging.h" #include "common/logging.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "libpq-fe.h" #include "libpq-fe.h"
#include "libpq/pqsignal.h" #include "libpq/pqsignal.h"
#include "pqexpbuffer.h" #include "pqexpbuffer.h"
#include "streamutil.h"
/* Time to sleep between reconnection attempts */ /* Time to sleep between reconnection attempts */
#define RECONNECT_SLEEP_TIME 5 #define RECONNECT_SLEEP_TIME 5

View File

@ -20,15 +20,12 @@
#include <sys/select.h> #include <sys/select.h>
#endif #endif
/* local includes */
#include "receivelog.h"
#include "streamutil.h"
#include "libpq-fe.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "common/file_utils.h" #include "common/file_utils.h"
#include "common/logging.h" #include "common/logging.h"
#include "libpq-fe.h"
#include "receivelog.h"
#include "streamutil.h"
/* fd and filename for currently open WAL file */ /* fd and filename for currently open WAL file */
static Walfile *walfile = NULL; static Walfile *walfile = NULL;

View File

@ -17,10 +17,6 @@
#include <sys/time.h> #include <sys/time.h>
#include <unistd.h> #include <unistd.h>
/* local includes */
#include "receivelog.h"
#include "streamutil.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "common/fe_memutils.h" #include "common/fe_memutils.h"
#include "common/file_perm.h" #include "common/file_perm.h"
@ -29,6 +25,8 @@
#include "fe_utils/connect.h" #include "fe_utils/connect.h"
#include "port/pg_bswap.h" #include "port/pg_bswap.h"
#include "pqexpbuffer.h" #include "pqexpbuffer.h"
#include "receivelog.h"
#include "streamutil.h"
#define ERRCODE_DUPLICATE_OBJECT "42710" #define ERRCODE_DUPLICATE_OBJECT "42710"

View File

@ -21,10 +21,9 @@
#include <zlib.h> #include <zlib.h>
#endif #endif
#include "pgtar.h"
#include "common/file_perm.h" #include "common/file_perm.h"
#include "common/file_utils.h" #include "common/file_utils.h"
#include "pgtar.h"
#include "receivelog.h" #include "receivelog.h"
#include "streamutil.h" #include "streamutil.h"

View File

@ -24,8 +24,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "port.h"
#include "common/config_info.h" #include "common/config_info.h"
#include "port.h"
static const char *progname; static const char *progname;

View File

@ -26,9 +26,8 @@
#include "catalog/pg_control.h" #include "catalog/pg_control.h"
#include "common/controldata_utils.h" #include "common/controldata_utils.h"
#include "common/logging.h" #include "common/logging.h"
#include "pg_getopt.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "pg_getopt.h"
static void static void
usage(const char *progname) usage(const char *progname)

View File

@ -15,15 +15,13 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_backup_archiver.h"
#include "pg_backup_utils.h"
#include "pg_dump.h"
#include <ctype.h> #include <ctype.h>
#include "catalog/pg_class_d.h" #include "catalog/pg_class_d.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "pg_backup_archiver.h"
#include "pg_backup_utils.h"
#include "pg_dump.h"
/* /*
* Variables for mapping DumpId to DumpableObject * Variables for mapping DumpId to DumpableObject

View File

@ -61,10 +61,9 @@
#include <sys/select.h> #include <sys/select.h>
#endif #endif
#include "fe_utils/string_utils.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "fe_utils/string_utils.h"
#include "port/pg_bswap.h" #include "port/pg_bswap.h"
/* Mnemonic macros for indexing the fd array returned by pipe(2) */ /* Mnemonic macros for indexing the fd array returned by pipe(2) */

View File

@ -30,14 +30,13 @@
#include <io.h> #include <io.h>
#endif #endif
#include "dumputils.h"
#include "fe_utils/string_utils.h"
#include "libpq/libpq-fs.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_archiver.h" #include "pg_backup_archiver.h"
#include "pg_backup_db.h" #include "pg_backup_db.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "dumputils.h"
#include "fe_utils/string_utils.h"
#include "libpq/libpq-fs.h"
#define TEXT_DUMP_HEADER "--\n-- PostgreSQL database dump\n--\n\n" #define TEXT_DUMP_HEADER "--\n-- PostgreSQL database dump\n--\n\n"
#define TEXT_DUMPALL_HEADER "--\n-- PostgreSQL database cluster dump\n--\n\n" #define TEXT_DUMPALL_HEADER "--\n-- PostgreSQL database cluster dump\n--\n\n"

View File

@ -25,11 +25,10 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common/file_utils.h"
#include "compress_io.h" #include "compress_io.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "common/file_utils.h"
/*-------- /*--------
* Routines in the format interface * Routines in the format interface

View File

@ -11,21 +11,19 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "fe_utils/connect.h"
#include "fe_utils/string_utils.h"
#include "dumputils.h"
#include "parallel.h"
#include "pg_backup_archiver.h"
#include "pg_backup_db.h"
#include "pg_backup_utils.h"
#include <unistd.h> #include <unistd.h>
#include <ctype.h> #include <ctype.h>
#ifdef HAVE_TERMIOS_H #ifdef HAVE_TERMIOS_H
#include <termios.h> #include <termios.h>
#endif #endif
#include "dumputils.h"
#include "fe_utils/connect.h"
#include "fe_utils/string_utils.h"
#include "parallel.h"
#include "pg_backup_archiver.h"
#include "pg_backup_db.h"
#include "pg_backup_utils.h"
static void _check_database_version(ArchiveHandle *AH); static void _check_database_version(ArchiveHandle *AH);
static PGconn *_connectDB(ArchiveHandle *AH, const char *newdbname, const char *newUser); static PGconn *_connectDB(ArchiveHandle *AH, const char *newdbname, const char *newUser);

View File

@ -34,13 +34,13 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include <dirent.h>
#include <sys/stat.h>
#include "common/file_utils.h"
#include "compress_io.h" #include "compress_io.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "common/file_utils.h"
#include <dirent.h>
#include <sys/stat.h>
typedef struct typedef struct
{ {

View File

@ -23,11 +23,10 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "fe_utils/string_utils.h"
#include "libpq/libpq-fs.h"
#include "pg_backup_archiver.h" #include "pg_backup_archiver.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "fe_utils/string_utils.h"
#include "libpq/libpq-fs.h"
static void _WriteData(ArchiveHandle *AH, const void *data, size_t dLen); static void _WriteData(ArchiveHandle *AH, const void *data, size_t dLen);
static void _WriteBlobData(ArchiveHandle *AH, const void *data, size_t dLen); static void _WriteBlobData(ArchiveHandle *AH, const void *data, size_t dLen);

View File

@ -29,18 +29,18 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_backup_archiver.h"
#include "pg_backup_tar.h"
#include "pg_backup_utils.h"
#include "pgtar.h"
#include "common/file_utils.h"
#include "fe_utils/string_utils.h"
#include <sys/stat.h> #include <sys/stat.h>
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
#include <unistd.h> #include <unistd.h>
#include "common/file_utils.h"
#include "fe_utils/string_utils.h"
#include "pg_backup_archiver.h"
#include "pg_backup_tar.h"
#include "pg_backup_utils.h"
#include "pgtar.h"
static void _ArchiveEntry(ArchiveHandle *AH, TocEntry *te); static void _ArchiveEntry(ArchiveHandle *AH, TocEntry *te);
static void _StartData(ArchiveHandle *AH, TocEntry *te); static void _StartData(ArchiveHandle *AH, TocEntry *te);
static void _WriteData(ArchiveHandle *AH, const void *data, size_t dLen); static void _WriteData(ArchiveHandle *AH, const void *data, size_t dLen);

View File

@ -38,8 +38,6 @@
#include <termios.h> #include <termios.h>
#endif #endif
#include "getopt_long.h"
#include "access/attnum.h" #include "access/attnum.h"
#include "access/sysattr.h" #include "access/sysattr.h"
#include "access/transam.h" #include "access/transam.h"
@ -54,17 +52,16 @@
#include "catalog/pg_proc_d.h" #include "catalog/pg_proc_d.h"
#include "catalog/pg_trigger_d.h" #include "catalog/pg_trigger_d.h"
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "libpq/libpq-fs.h"
#include "storage/block.h"
#include "dumputils.h" #include "dumputils.h"
#include "fe_utils/connect.h"
#include "fe_utils/string_utils.h"
#include "getopt_long.h"
#include "libpq/libpq-fs.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_db.h" #include "pg_backup_db.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "pg_dump.h" #include "pg_dump.h"
#include "fe_utils/connect.h" #include "storage/block.h"
#include "fe_utils/string_utils.h"
typedef struct typedef struct
{ {

View File

@ -15,12 +15,11 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "catalog/pg_class_d.h"
#include "pg_backup_archiver.h" #include "pg_backup_archiver.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
#include "pg_dump.h" #include "pg_dump.h"
#include "catalog/pg_class_d.h"
/* /*
* Sort priority for database object types. * Sort priority for database object types.
* Objects are sorted by type, and within a type by name. * Objects are sorted by type, and within a type by name.

View File

@ -18,14 +18,13 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "getopt_long.h"
#include "dumputils.h"
#include "pg_backup.h"
#include "common/file_utils.h" #include "common/file_utils.h"
#include "common/logging.h" #include "common/logging.h"
#include "dumputils.h"
#include "fe_utils/connect.h" #include "fe_utils/connect.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "getopt_long.h"
#include "pg_backup.h"
/* version string we expect back from pg_dump */ /* version string we expect back from pg_dump */
#define PGDUMP_VERSIONSTR "pg_dump (PostgreSQL) " PG_VERSION "\n" #define PGDUMP_VERSIONSTR "pg_dump (PostgreSQL) " PG_VERSION "\n"

View File

@ -45,13 +45,11 @@
#include <termios.h> #include <termios.h>
#endif #endif
#include "getopt_long.h"
#include "dumputils.h" #include "dumputils.h"
#include "getopt_long.h"
#include "parallel.h" #include "parallel.h"
#include "pg_backup_utils.h" #include "pg_backup_utils.h"
static void usage(const char *progname); static void usage(const char *progname);
int int

View File

@ -44,9 +44,9 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "access/transam.h"
#include "access/heaptoast.h" #include "access/heaptoast.h"
#include "access/multixact.h" #include "access/multixact.h"
#include "access/transam.h"
#include "access/xlog.h" #include "access/xlog.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "common/controldata_utils.h" #include "common/controldata_utils.h"
@ -55,10 +55,9 @@
#include "common/logging.h" #include "common/logging.h"
#include "common/restricted_token.h" #include "common/restricted_token.h"
#include "common/string.h" #include "common/string.h"
#include "storage/large_object.h"
#include "pg_getopt.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "pg_getopt.h"
#include "storage/large_object.h"
static ControlFileData ControlFile; /* pg_control values */ static ControlFileData ControlFile; /* pg_control values */
static XLogSegNo newXlogSegNo; /* new XLOG segment # */ static XLogSegNo newXlogSegNo; /* new XLOG segment # */

View File

@ -12,9 +12,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "datapagemap.h"
#include "common/logging.h" #include "common/logging.h"
#include "datapagemap.h"
struct datapagemap_iterator struct datapagemap_iterator
{ {

View File

@ -19,10 +19,10 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "pg_rewind.h"
#include "fetch.h" #include "fetch.h"
#include "file_ops.h" #include "file_ops.h"
#include "filemap.h" #include "filemap.h"
#include "pg_rewind.h"
void void
fetchSourceFileList(void) fetchSourceFileList(void)

View File

@ -13,12 +13,11 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "catalog/pg_tablespace_d.h"
#include "common/string.h"
#include "datapagemap.h" #include "datapagemap.h"
#include "filemap.h" #include "filemap.h"
#include "pg_rewind.h" #include "pg_rewind.h"
#include "common/string.h"
#include "catalog/pg_tablespace_d.h"
#include "storage/fd.h" #include "storage/fd.h"
filemap_t *filemap = NULL; filemap_t *filemap = NULL;

View File

@ -14,14 +14,13 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include "pg_rewind.h" #include "catalog/pg_type_d.h"
#include "datapagemap.h" #include "datapagemap.h"
#include "fe_utils/connect.h"
#include "fetch.h" #include "fetch.h"
#include "file_ops.h" #include "file_ops.h"
#include "filemap.h" #include "filemap.h"
#include "pg_rewind.h"
#include "catalog/pg_type_d.h"
#include "fe_utils/connect.h"
#include "port/pg_bswap.h" #include "port/pg_bswap.h"
PGconn *conn = NULL; PGconn *conn = NULL;

View File

@ -13,16 +13,14 @@
#include <unistd.h> #include <unistd.h>
#include "pg_rewind.h"
#include "filemap.h"
#include "access/rmgr.h" #include "access/rmgr.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "access/xlogreader.h" #include "access/xlogreader.h"
#include "catalog/pg_control.h" #include "catalog/pg_control.h"
#include "catalog/storage_xlog.h" #include "catalog/storage_xlog.h"
#include "commands/dbcommands_xlog.h" #include "commands/dbcommands_xlog.h"
#include "filemap.h"
#include "pg_rewind.h"
/* /*
* RmgrNames is an array of resource manager names, to make error messages * RmgrNames is an array of resource manager names, to make error messages

View File

@ -14,11 +14,6 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "pg_rewind.h"
#include "fetch.h"
#include "file_ops.h"
#include "filemap.h"
#include "access/timeline.h" #include "access/timeline.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "catalog/catversion.h" #include "catalog/catversion.h"
@ -28,7 +23,11 @@
#include "common/file_utils.h" #include "common/file_utils.h"
#include "common/restricted_token.h" #include "common/restricted_token.h"
#include "fe_utils/recovery_gen.h" #include "fe_utils/recovery_gen.h"
#include "fetch.h"
#include "file_ops.h"
#include "filemap.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "pg_rewind.h"
#include "storage/bufpage.h" #include "storage/bufpage.h"
static void usage(const char *progname); static void usage(const char *progname);

View File

@ -9,10 +9,9 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_rewind.h"
#include "access/timeline.h" #include "access/timeline.h"
#include "access/xlog_internal.h" #include "access/xlog_internal.h"
#include "pg_rewind.h"
/* /*
* This is copy-pasted from the backend readTimeLineHistory, modified to * This is copy-pasted from the backend readTimeLineHistory, modified to

View File

@ -12,10 +12,9 @@
#include <unistd.h> #include <unistd.h>
#include <signal.h> #include <signal.h>
#include "getopt_long.h"
#include "access/xlogdefs.h" #include "access/xlogdefs.h"
#include "common/logging.h" #include "common/logging.h"
#include "getopt_long.h"
/* /*
* put the temp files in the local directory * put the temp files in the local directory

View File

@ -14,7 +14,6 @@
#include "mb/pg_wchar.h" #include "mb/pg_wchar.h"
#include "pg_upgrade.h" #include "pg_upgrade.h"
static void check_new_cluster_is_empty(void); static void check_new_cluster_is_empty(void);
static void check_databases_are_compatible(void); static void check_databases_are_compatible(void);
static void check_locale_and_encoding(DbInfo *olddb, DbInfo *newdb); static void check_locale_and_encoding(DbInfo *olddb, DbInfo *newdb);

View File

@ -9,10 +9,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include <ctype.h> #include <ctype.h>
#include "pg_upgrade.h"
/* /*
* get_control_data() * get_control_data()
* *

View File

@ -9,10 +9,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "pg_upgrade.h"
void void
generate_old_dump(void) generate_old_dump(void)

View File

@ -9,13 +9,6 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "access/visibilitymap.h"
#include "common/file_perm.h"
#include "pg_upgrade.h"
#include "storage/bufpage.h"
#include "storage/checksum.h"
#include "storage/checksum_impl.h"
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#ifdef HAVE_COPYFILE_H #ifdef HAVE_COPYFILE_H
@ -26,6 +19,12 @@
#include <linux/fs.h> #include <linux/fs.h>
#endif #endif
#include "access/visibilitymap.h"
#include "common/file_perm.h"
#include "pg_upgrade.h"
#include "storage/bufpage.h"
#include "storage/checksum.h"
#include "storage/checksum_impl.h"
#ifdef WIN32 #ifdef WIN32
static int win32_pghardlink(const char *src, const char *dst); static int win32_pghardlink(const char *src, const char *dst);

View File

@ -9,11 +9,9 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include "access/transam.h" #include "access/transam.h"
#include "catalog/pg_language_d.h" #include "catalog/pg_language_d.h"
#include "pg_upgrade.h"
/* /*
* qsort comparator for pointers to library names * qsort comparator for pointers to library names

View File

@ -9,11 +9,9 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include "access/transam.h" #include "access/transam.h"
#include "catalog/pg_class_d.h" #include "catalog/pg_class_d.h"
#include "pg_upgrade.h"
static void create_rel_filename_map(const char *old_data, const char *new_data, static void create_rel_filename_map(const char *old_data, const char *new_data,
const DbInfo *old_db, const DbInfo *new_db, const DbInfo *old_db, const DbInfo *new_db,

View File

@ -14,12 +14,10 @@
#include <io.h> #include <io.h>
#endif #endif
#include "getopt_long.h"
#include "common/string.h" #include "common/string.h"
#include "utils/pidfile.h" #include "getopt_long.h"
#include "pg_upgrade.h" #include "pg_upgrade.h"
#include "utils/pidfile.h"
static void usage(void); static void usage(void);
static void check_required_directory(char **dirpath, static void check_required_directory(char **dirpath,

View File

@ -16,7 +16,6 @@
#include "pg_upgrade.h" #include "pg_upgrade.h"
static int parallel_jobs; static int parallel_jobs;
#ifdef WIN32 #ifdef WIN32

View File

@ -37,16 +37,16 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h" #ifdef HAVE_LANGINFO_H
#include <langinfo.h>
#endif
#include "catalog/pg_class_d.h" #include "catalog/pg_class_d.h"
#include "common/file_perm.h" #include "common/file_perm.h"
#include "common/logging.h" #include "common/logging.h"
#include "common/restricted_token.h" #include "common/restricted_token.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "pg_upgrade.h"
#ifdef HAVE_LANGINFO_H
#include <langinfo.h>
#endif
static void prepare_new_cluster(void); static void prepare_new_cluster(void);
static void prepare_new_globals(void); static void prepare_new_globals(void);

View File

@ -9,12 +9,11 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include <sys/stat.h> #include <sys/stat.h>
#include "catalog/pg_class_d.h"
#include "access/transam.h"
#include "access/transam.h"
#include "catalog/pg_class_d.h"
#include "pg_upgrade.h"
static void transfer_single_new_db(FileNameMap *maps, int size, char *old_tablespace); static void transfer_single_new_db(FileNameMap *maps, int size, char *old_tablespace);
static void transfer_relfile(FileNameMap *map, const char *suffix, bool vm_must_add_frozenbit); static void transfer_relfile(FileNameMap *map, const char *suffix, bool vm_must_add_frozenbit);

View File

@ -13,7 +13,6 @@
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "pg_upgrade.h" #include "pg_upgrade.h"
static PGconn *get_db_conn(ClusterInfo *cluster, const char *db_name); static PGconn *get_db_conn(ClusterInfo *cluster, const char *db_name);

View File

@ -9,11 +9,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common/username.h"
#include "pg_upgrade.h"
#include <signal.h> #include <signal.h>
#include "common/username.h"
#include "pg_upgrade.h"
LogOpts log_opts; LogOpts log_opts;

View File

@ -9,12 +9,9 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pg_upgrade.h"
#include "catalog/pg_class_d.h" #include "catalog/pg_class_d.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "pg_upgrade.h"
/* /*
* new_9_0_populate_pg_largeobject_metadata() * new_9_0_populate_pg_largeobject_metadata()

View File

@ -20,8 +20,8 @@
#include <time.h> #include <time.h>
#include "utils/datetime.h"
#include "lib/stringinfo.h" #include "lib/stringinfo.h"
#include "utils/datetime.h"
/* copied from timestamp.c */ /* copied from timestamp.c */
pg_time_t pg_time_t

View File

@ -16,16 +16,15 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "access/xlog_internal.h"
#include "access/xlogreader.h" #include "access/xlogreader.h"
#include "access/xlogrecord.h" #include "access/xlogrecord.h"
#include "access/xlog_internal.h"
#include "access/transam.h" #include "access/transam.h"
#include "common/fe_memutils.h" #include "common/fe_memutils.h"
#include "common/logging.h" #include "common/logging.h"
#include "getopt_long.h" #include "getopt_long.h"
#include "rmgrdesc.h" #include "rmgrdesc.h"
static const char *progname; static const char *progname;
static int WalSegSz; static int WalSegSz;

View File

@ -32,12 +32,6 @@
#endif #endif
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common/int.h"
#include "common/logging.h"
#include "fe_utils/conditional.h"
#include "getopt_long.h"
#include "libpq-fe.h"
#include "portability/instr_time.h"
#include <ctype.h> #include <ctype.h>
#include <float.h> #include <float.h>
@ -63,11 +57,18 @@
#endif #endif
#endif #endif
#include "common/int.h"
#include "common/logging.h"
#include "fe_utils/conditional.h"
#include "getopt_long.h"
#include "libpq-fe.h"
#include "pgbench.h"
#include "portability/instr_time.h"
#ifndef M_PI #ifndef M_PI
#define M_PI 3.14159265358979323846 #define M_PI 3.14159265358979323846
#endif #endif
#include "pgbench.h"
#define ERRCODE_UNDEFINED_TABLE "42P01" #define ERRCODE_UNDEFINED_TABLE "42P01"

View File

@ -18,18 +18,16 @@
#include <win32.h> #include <win32.h>
#endif #endif
#include "command.h"
#include "common.h"
#include "common/logging.h" #include "common/logging.h"
#include "copy.h"
#include "crosstabview.h"
#include "fe_utils/mbprint.h" #include "fe_utils/mbprint.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "portability/instr_time.h" #include "portability/instr_time.h"
#include "command.h"
#include "common.h"
#include "copy.h"
#include "crosstabview.h"
#include "settings.h" #include "settings.h"
static bool DescribeQuery(const char *query, double *elapsed_msec); static bool DescribeQuery(const char *query, double *elapsed_msec);
static bool ExecQueryUsingCursor(const char *query, double *elapsed_msec); static bool ExecQueryUsingCursor(const char *query, double *elapsed_msec);
static bool command_no_begin(const char *query); static bool command_no_begin(const char *query);

View File

@ -6,7 +6,6 @@
* src/bin/psql/copy.c * src/bin/psql/copy.c
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "copy.h"
#include <signal.h> #include <signal.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -16,16 +15,15 @@
#include <io.h> /* I think */ #include <io.h> /* I think */
#endif #endif
#include "common.h"
#include "common/logging.h"
#include "copy.h"
#include "libpq-fe.h" #include "libpq-fe.h"
#include "pqexpbuffer.h" #include "pqexpbuffer.h"
#include "settings.h"
#include "common.h"
#include "prompt.h" #include "prompt.h"
#include "settings.h"
#include "stringutils.h" #include "stringutils.h"
#include "common/logging.h"
/* /*
* parse_slash_copy * parse_slash_copy
* -- parses \copy command line * -- parses \copy command line

View File

@ -8,13 +8,12 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common.h" #include "common.h"
#include "common/logging.h"
#include "crosstabview.h" #include "crosstabview.h"
#include "pqexpbuffer.h" #include "pqexpbuffer.h"
#include "psqlscanslash.h" #include "psqlscanslash.h"
#include "settings.h" #include "settings.h"
#include "common/logging.h"
/* /*
* Value/position from the resultset that goes into the horizontal or vertical * Value/position from the resultset that goes into the horizontal or vertical
* crosstabview header. * crosstabview header.

View File

@ -18,18 +18,15 @@
#include "catalog/pg_cast_d.h" #include "catalog/pg_cast_d.h"
#include "catalog/pg_class_d.h" #include "catalog/pg_class_d.h"
#include "catalog/pg_default_acl_d.h" #include "catalog/pg_default_acl_d.h"
#include "common.h"
#include "common/logging.h" #include "common/logging.h"
#include "describe.h"
#include "fe_utils/mbprint.h" #include "fe_utils/mbprint.h"
#include "fe_utils/print.h" #include "fe_utils/print.h"
#include "fe_utils/string_utils.h" #include "fe_utils/string_utils.h"
#include "common.h"
#include "describe.h"
#include "settings.h" #include "settings.h"
#include "variables.h" #include "variables.h"
static bool describeOneTableDetails(const char *schemaname, static bool describeOneTableDetails(const char *schemaname,
const char *relationname, const char *relationname,
const char *oid, const char *oid,

View File

@ -21,10 +21,9 @@
#include <termios.h> #include <termios.h>
#endif #endif
#include "common.h"
#include "common/logging.h" #include "common/logging.h"
#include "common/username.h" #include "common/username.h"
#include "common.h"
#include "help.h" #include "help.h"
#include "input.h" #include "input.h"
#include "settings.h" #include "settings.h"

View File

@ -13,12 +13,11 @@
#include <fcntl.h> #include <fcntl.h>
#include <limits.h> #include <limits.h>
#include "common.h"
#include "common/logging.h"
#include "input.h" #include "input.h"
#include "settings.h" #include "settings.h"
#include "tab-complete.h" #include "tab-complete.h"
#include "common.h"
#include "common/logging.h"
#ifndef WIN32 #ifndef WIN32
#define PSQLHISTORY ".psql_history" #define PSQLHISTORY ".psql_history"

View File

@ -6,12 +6,11 @@
* src/bin/psql/large_obj.c * src/bin/psql/large_obj.c
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "large_obj.h"
#include "settings.h"
#include "common.h" #include "common.h"
#include "common/logging.h" #include "common/logging.h"
#include "large_obj.h"
#include "settings.h"
static void print_lo_result(const char *fmt,...) pg_attribute_printf(1, 2); static void print_lo_result(const char *fmt,...) pg_attribute_printf(1, 2);

View File

@ -6,18 +6,16 @@
* src/bin/psql/mainloop.c * src/bin/psql/mainloop.c
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "mainloop.h"
#include "command.h" #include "command.h"
#include "common.h" #include "common.h"
#include "common/logging.h"
#include "input.h" #include "input.h"
#include "mainloop.h"
#include "mb/pg_wchar.h"
#include "prompt.h" #include "prompt.h"
#include "settings.h" #include "settings.h"
#include "common/logging.h"
#include "mb/pg_wchar.h"
/* callback functions for our flex lexer */ /* callback functions for our flex lexer */
const PsqlScanCallbacks psqlscan_callbacks = { const PsqlScanCallbacks psqlscan_callbacks = {
psql_get_variable, psql_get_variable,

View File

@ -18,12 +18,11 @@
#endif #endif
#include "common.h" #include "common.h"
#include "common/string.h"
#include "input.h" #include "input.h"
#include "prompt.h" #include "prompt.h"
#include "settings.h" #include "settings.h"
#include "common/string.h"
/*-------------------------- /*--------------------------
* get_prompt * get_prompt
* *

View File

@ -14,21 +14,17 @@
#include <win32.h> #include <win32.h>
#endif /* WIN32 */ #endif /* WIN32 */
#include "getopt_long.h"
#include "common/logging.h"
#include "fe_utils/print.h"
#include "command.h" #include "command.h"
#include "common.h" #include "common.h"
#include "common/logging.h"
#include "describe.h" #include "describe.h"
#include "fe_utils/print.h"
#include "getopt_long.h"
#include "help.h" #include "help.h"
#include "input.h" #include "input.h"
#include "mainloop.h" #include "mainloop.h"
#include "settings.h" #include "settings.h"
/* /*
* Global psql options * Global psql options
*/ */

View File

@ -8,10 +8,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common.h" #include "common.h"
#include "variables.h"
#include "common/logging.h" #include "common/logging.h"
#include "variables.h"
/* /*
* Check whether a variable's name is allowed. * Check whether a variable's name is allowed.

View File

@ -39,9 +39,8 @@
#endif #endif
#include "common/shortest_dec.h" #include "common/shortest_dec.h"
#include "ryu_common.h"
#include "digit_table.h" #include "digit_table.h"
#include "ryu_common.h"
#define FLOAT_MANTISSA_BITS 23 #define FLOAT_MANTISSA_BITS 23
#define FLOAT_EXPONENT_BITS 8 #define FLOAT_EXPONENT_BITS 8

View File

@ -30,11 +30,9 @@
#include <termios.h> #include <termios.h>
#endif #endif
#include "fe_utils/print.h"
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "fe_utils/mbprint.h" #include "fe_utils/mbprint.h"
#include "fe_utils/print.h"
/* /*
* If the calling program doesn't have any mechanism for setting * If the calling program doesn't have any mechanism for setting

View File

@ -10,9 +10,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common/logging.h" #include "common/logging.h"
#include "fe_utils/string_utils.h"
#include "fe_utils/recovery_gen.h" #include "fe_utils/recovery_gen.h"
#include "fe_utils/string_utils.h"
static char *escape_quotes(const char *src); static char *escape_quotes(const char *src);

View File

@ -17,10 +17,8 @@
#include <ctype.h> #include <ctype.h>
#include "fe_utils/string_utils.h"
#include "common/keywords.h" #include "common/keywords.h"
#include "fe_utils/string_utils.h"
static PQExpBuffer defaultGetLocalPQExpBuffer(void); static PQExpBuffer defaultGetLocalPQExpBuffer(void);

View File

@ -7,14 +7,14 @@
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
#include <ecpgtype.h> #include "ecpg_informix.h"
#include <ecpg_informix.h> #include "ecpgerrno.h"
#include <pgtypes_error.h> #include "ecpgtype.h"
#include <pgtypes_date.h> #include "pgtypes_date.h"
#include <pgtypes_numeric.h> #include "pgtypes_error.h"
#include <sqltypes.h> #include "pgtypes_numeric.h"
#include <sqlca.h> #include "sqlca.h"
#include <ecpgerrno.h> #include "sqltypes.h"
/* this is also defined in ecpglib/misc.c, by defining it twice we don't have to export the symbol */ /* this is also defined in ecpglib/misc.c, by defining it twice we don't have to export the symbol */

View File

@ -4,10 +4,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "ecpg-pthread-win32.h" #include "ecpg-pthread-win32.h"
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
#include "sqlca.h" #include "sqlca.h"
#ifdef ENABLE_THREAD_SAFETY #ifdef ENABLE_THREAD_SAFETY

View File

@ -5,15 +5,15 @@
#include <math.h> #include <math.h>
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "sqlca.h" #include "ecpgtype.h"
#include "pgtypes_numeric.h"
#include "pgtypes_date.h" #include "pgtypes_date.h"
#include "pgtypes_timestamp.h"
#include "pgtypes_interval.h" #include "pgtypes_interval.h"
#include "pgtypes_numeric.h"
#include "pgtypes_timestamp.h"
#include "sqlca.h"
/* returns true if character c is a delimiter for the given array type */ /* returns true if character c is a delimiter for the given array type */
static bool static bool

View File

@ -7,12 +7,11 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "ecpg-pthread-win32.h" #include "ecpg-pthread-win32.h"
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
#include "sqlca.h" #include "sqlca.h"
#include "sqlda.h" #include "sqlda.h"
#include "sql3types.h" #include "sql3types.h"

View File

@ -4,9 +4,9 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpgtype.h"
#include "ecpglib.h" #include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
#include "sqlca.h" #include "sqlca.h"
void void

View File

@ -19,19 +19,18 @@
#include <math.h> #include <math.h>
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "sqlca.h" #include "ecpgtype.h"
#include "sqlda-native.h"
#include "sqlda-compat.h"
#include "sql3types.h"
#include "pgtypes_numeric.h"
#include "pgtypes_date.h" #include "pgtypes_date.h"
#include "pgtypes_timestamp.h"
#include "pgtypes_interval.h" #include "pgtypes_interval.h"
#include "pgtypes_numeric.h"
#include "pgtypes_timestamp.h"
#include "sql3types.h"
#include "sqlca.h"
#include "sqlda-compat.h"
#include "sqlda-native.h"
/* /*
* This function returns a newly malloced string that has ' and \ * This function returns a newly malloced string that has ' and \

View File

@ -4,10 +4,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "ecpg-pthread-win32.h" #include "ecpg-pthread-win32.h"
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
void void
ecpg_free(void *ptr) ecpg_free(void *ptr)

View File

@ -5,17 +5,18 @@
#include <limits.h> #include <limits.h>
#include <unistd.h> #include <unistd.h>
#include "ecpg-pthread-win32.h" #include "ecpg-pthread-win32.h"
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "sqlca.h" #include "ecpgtype.h"
#include "pgtypes_numeric.h"
#include "pgtypes_date.h" #include "pgtypes_date.h"
#include "pgtypes_timestamp.h"
#include "pgtypes_interval.h" #include "pgtypes_interval.h"
#include "pgtypes_numeric.h"
#include "pgtypes_timestamp.h"
#include "pg_config_paths.h" #include "pg_config_paths.h"
#include "sqlca.h"
#ifdef HAVE_LONG_LONG_INT #ifdef HAVE_LONG_LONG_INT
#ifndef LONG_LONG_MIN #ifndef LONG_LONG_MIN

View File

@ -5,10 +5,10 @@
#include <ctype.h> #include <ctype.h>
#include "ecpgtype.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
#include "sqlca.h" #include "sqlca.h"
#define STMTID_SIZE 32 #define STMTID_SIZE 32

View File

@ -10,16 +10,15 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "ecpg-pthread-win32.h"
#include "decimal.h" #include "decimal.h"
#include "ecpgtype.h" #include "ecpg-pthread-win32.h"
#include "ecpglib.h"
#include "ecpgerrno.h" #include "ecpgerrno.h"
#include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "ecpgtype.h"
#include "sqlca.h" #include "sqlca.h"
#include "sqlda-native.h"
#include "sqlda-compat.h" #include "sqlda-compat.h"
#include "sqlda-native.h"
/* /*
* Compute the next variable's offset with * Compute the next variable's offset with

View File

@ -4,12 +4,11 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "catalog/pg_type_d.h" #include "catalog/pg_type_d.h"
#include "ecpgtype.h"
#include "ecpglib.h" #include "ecpglib.h"
#include "ecpglib_extern.h" #include "ecpglib_extern.h"
#include "sqltypes.h" #include "ecpgtype.h"
#include "sql3types.h" #include "sql3types.h"
#include "sqltypes.h"
/* /*
* This function is used to generate the correct type names. * This function is used to generate the correct type names.

View File

@ -2,8 +2,8 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "pgtypeslib_extern.h"
#include "pgtypes.h" #include "pgtypes.h"
#include "pgtypeslib_extern.h"
/* Return value is zero-filled. */ /* Return value is zero-filled. */
char * char *

View File

@ -6,10 +6,10 @@
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
#include "pgtypeslib_extern.h"
#include "dt.h" #include "dt.h"
#include "pgtypes_error.h"
#include "pgtypes_date.h" #include "pgtypes_date.h"
#include "pgtypes_error.h"
#include "pgtypeslib_extern.h"
date * date *
PGTYPESdate_new(void) PGTYPESdate_new(void)

View File

@ -7,9 +7,9 @@
#include <math.h> #include <math.h>
#include "common/string.h" #include "common/string.h"
#include "pgtypeslib_extern.h"
#include "dt.h" #include "dt.h"
#include "pgtypes_timestamp.h" #include "pgtypes_timestamp.h"
#include "pgtypeslib_extern.h"
const int day_tab[2][13] = { const int day_tab[2][13] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 0}, {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 0},

View File

@ -1,6 +1,7 @@
/* src/interfaces/ecpg/pgtypeslib/interval.c */ /* src/interfaces/ecpg/pgtypeslib/interval.c */
#include "postgres_fe.h" #include "postgres_fe.h"
#include <time.h> #include <time.h>
#include <math.h> #include <math.h>
#include <limits.h> #include <limits.h>
@ -10,11 +11,10 @@
#endif #endif
#include "common/string.h" #include "common/string.h"
#include "pgtypeslib_extern.h"
#include "dt.h" #include "dt.h"
#include "pgtypes_error.h" #include "pgtypes_error.h"
#include "pgtypes_interval.h" #include "pgtypes_interval.h"
#include "pgtypeslib_extern.h"
/* copy&pasted from .../src/backend/utils/adt/datetime.c /* copy&pasted from .../src/backend/utils/adt/datetime.c
* and changesd struct pg_tm to struct tm * and changesd struct pg_tm to struct tm

View File

@ -1,12 +1,14 @@
/* src/interfaces/ecpg/pgtypeslib/numeric.c */ /* src/interfaces/ecpg/pgtypeslib/numeric.c */
#include "postgres_fe.h" #include "postgres_fe.h"
#include <ctype.h> #include <ctype.h>
#include <float.h> #include <float.h>
#include <limits.h> #include <limits.h>
#include "pgtypeslib_extern.h"
#include "pgtypes_error.h" #include "pgtypes_error.h"
#include "pgtypes_numeric.h"
#include "pgtypeslib_extern.h"
#define Max(x, y) ((x) > (y) ? (x) : (y)) #define Max(x, y) ((x) > (y) ? (x) : (y))
#define Min(x, y) ((x) < (y) ? (x) : (y)) #define Min(x, y) ((x) < (y) ? (x) : (y))
@ -20,7 +22,6 @@
free(buf); \ free(buf); \
} while (0) } while (0)
#include "pgtypes_numeric.h"
#if 0 #if 0
/* ---------- /* ----------

View File

@ -11,11 +11,10 @@
#error -ffast-math is known to break this code #error -ffast-math is known to break this code
#endif #endif
#include "pgtypeslib_extern.h"
#include "dt.h" #include "dt.h"
#include "pgtypes_timestamp.h"
#include "pgtypes_date.h" #include "pgtypes_date.h"
#include "pgtypes_timestamp.h"
#include "pgtypeslib_extern.h"
static int64 static int64
time2t(const int hour, const int min, const int sec, const fsec_t fsec) time2t(const int hour, const int min, const int sec, const fsec_t fsec)

View File

@ -9,11 +9,10 @@
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "preproc_extern.h"
#include "preproc.h"
/* ScanKeywordList lookup data for C keywords */ /* ScanKeywordList lookup data for C keywords */
#include "c_kwlist_d.h" #include "c_kwlist_d.h"
#include "preproc_extern.h"
#include "preproc.h"
/* Token codes for C keywords */ /* Token codes for C keywords */
#define PG_KEYWORD(kwname, value) value, #define PG_KEYWORD(kwname, value) value,

View File

@ -13,11 +13,10 @@
#include <ctype.h> #include <ctype.h>
#include "preproc_extern.h"
#include "preproc.h"
/* ScanKeywordList lookup data for ECPG keywords */ /* ScanKeywordList lookup data for ECPG keywords */
#include "ecpg_kwlist_d.h" #include "ecpg_kwlist_d.h"
#include "preproc_extern.h"
#include "preproc.h"
/* Token codes for ECPG keywords */ /* Token codes for ECPG keywords */
#define PG_KEYWORD(kwname, value) value, #define PG_KEYWORD(kwname, value) value,

View File

@ -40,9 +40,8 @@
#include "common/md5.h" #include "common/md5.h"
#include "common/scram-common.h" #include "common/scram-common.h"
#include "libpq-fe.h"
#include "fe-auth.h" #include "fe-auth.h"
#include "libpq-fe.h"
#ifdef ENABLE_GSS #ifdef ENABLE_GSS
/* /*

View File

@ -21,10 +21,16 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "common/ip.h"
#include "common/link-canary.h"
#include "common/scram-common.h"
#include "common/string.h"
#include "fe-auth.h"
#include "libpq-fe.h" #include "libpq-fe.h"
#include "libpq-int.h" #include "libpq-int.h"
#include "fe-auth.h" #include "mb/pg_wchar.h"
#include "pg_config_paths.h" #include "pg_config_paths.h"
#include "port/pg_bswap.h"
#ifdef WIN32 #ifdef WIN32
#include "win32.h" #include "win32.h"
@ -70,14 +76,6 @@ static int ldapServiceLookup(const char *purl, PQconninfoOption *options,
PQExpBuffer errorMessage); PQExpBuffer errorMessage);
#endif #endif
#include "common/ip.h"
#include "common/link-canary.h"
#include "common/scram-common.h"
#include "common/string.h"
#include "mb/pg_wchar.h"
#include "port/pg_bswap.h"
#ifndef WIN32 #ifndef WIN32
#define PGPASSFILE ".pgpass" #define PGPASSFILE ".pgpass"
#else #else

View File

@ -18,17 +18,16 @@
#include <fcntl.h> #include <fcntl.h>
#include <limits.h> #include <limits.h>
#include "libpq-fe.h"
#include "libpq-int.h"
#include "mb/pg_wchar.h"
#ifdef WIN32 #ifdef WIN32
#include "win32.h" #include "win32.h"
#else #else
#include <unistd.h> #include <unistd.h>
#endif #endif
#include "libpq-fe.h"
#include "libpq-int.h"
#include "mb/pg_wchar.h"
/* keep this in same order as ExecStatusType in libpq-fe.h */ /* keep this in same order as ExecStatusType in libpq-fe.h */
char *const pgresStatus[] = { char *const pgresStatus[] = {
"PGRES_EMPTY_QUERY", "PGRES_EMPTY_QUERY",

View File

@ -50,9 +50,8 @@
#include "libpq-fe.h" #include "libpq-fe.h"
#include "libpq-int.h" #include "libpq-int.h"
#include "mb/pg_wchar.h" #include "mb/pg_wchar.h"
#include "port/pg_bswap.h"
#include "pg_config_paths.h" #include "pg_config_paths.h"
#include "port/pg_bswap.h"
static int pqPutMsgBytes(const void *buf, size_t len, PGconn *conn); static int pqPutMsgBytes(const void *buf, size_t len, PGconn *conn);
static int pqSendSome(PGconn *conn, int len); static int pqSendSome(PGconn *conn, int len);

View File

@ -17,11 +17,6 @@
#include <ctype.h> #include <ctype.h>
#include <fcntl.h> #include <fcntl.h>
#include "libpq-fe.h"
#include "libpq-int.h"
#include "port/pg_bswap.h"
#ifdef WIN32 #ifdef WIN32
#include "win32.h" #include "win32.h"
#else #else
@ -31,6 +26,9 @@
#endif #endif
#endif #endif
#include "libpq-fe.h"
#include "libpq-int.h"
#include "port/pg_bswap.h"
static int getRowDescriptions(PGconn *conn); static int getRowDescriptions(PGconn *conn);
static int getAnotherTuple(PGconn *conn, bool binary); static int getAnotherTuple(PGconn *conn, bool binary);

View File

@ -17,12 +17,6 @@
#include <ctype.h> #include <ctype.h>
#include <fcntl.h> #include <fcntl.h>
#include "libpq-fe.h"
#include "libpq-int.h"
#include "mb/pg_wchar.h"
#include "port/pg_bswap.h"
#ifdef WIN32 #ifdef WIN32
#include "win32.h" #include "win32.h"
#else #else
@ -32,6 +26,10 @@
#endif #endif
#endif #endif
#include "libpq-fe.h"
#include "libpq-int.h"
#include "mb/pg_wchar.h"
#include "port/pg_bswap.h"
/* /*
* This macro lists the backend message types that could be "long" (more * This macro lists the backend message types that could be "long" (more

View File

@ -13,9 +13,9 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#include "fe-gssapi-common.h"
#include "libpq-fe.h" #include "libpq-fe.h"
#include "libpq-int.h" #include "libpq-int.h"
#include "fe-gssapi-common.h"
#include "port/pg_bswap.h" #include "port/pg_bswap.h"
/* /*

View File

@ -28,10 +28,6 @@
#include <fcntl.h> #include <fcntl.h>
#include <ctype.h> #include <ctype.h>
#include "libpq-fe.h"
#include "fe-auth.h"
#include "libpq-int.h"
#ifdef WIN32 #ifdef WIN32
#include "win32.h" #include "win32.h"
#else #else
@ -55,6 +51,10 @@
#endif #endif
#endif #endif
#include "fe-auth.h"
#include "libpq-fe.h"
#include "libpq-int.h"
/* /*
* Macros to handle disabling and then restoring the state of SIGPIPE handling. * Macros to handle disabling and then restoring the state of SIGPIPE handling.
* On Windows, these are all no-ops since there's no SIGPIPEs. * On Windows, these are all no-ops since there's no SIGPIPEs.

View File

@ -24,6 +24,7 @@
#include "funcapi.h" #include "funcapi.h"
#include "nodes/makefuncs.h" #include "nodes/makefuncs.h"
#include "parser/parse_type.h" #include "parser/parse_type.h"
#include "plpgsql.h"
#include "utils/builtins.h" #include "utils/builtins.h"
#include "utils/guc.h" #include "utils/guc.h"
#include "utils/lsyscache.h" #include "utils/lsyscache.h"
@ -33,9 +34,6 @@
#include "utils/syscache.h" #include "utils/syscache.h"
#include "utils/typcache.h" #include "utils/typcache.h"
#include "plpgsql.h"
/* ---------- /* ----------
* Our own local and global variables * Our own local and global variables
* ---------- * ----------

View File

@ -34,6 +34,7 @@
#include "parser/parse_coerce.h" #include "parser/parse_coerce.h"
#include "parser/parse_type.h" #include "parser/parse_type.h"
#include "parser/scansup.h" #include "parser/scansup.h"
#include "plpgsql.h"
#include "storage/proc.h" #include "storage/proc.h"
#include "tcop/tcopprot.h" #include "tcop/tcopprot.h"
#include "tcop/utility.h" #include "tcop/utility.h"
@ -48,9 +49,6 @@
#include "utils/syscache.h" #include "utils/syscache.h"
#include "utils/typcache.h" #include "utils/typcache.h"
#include "plpgsql.h"
typedef struct typedef struct
{ {
int nargs; /* number of arguments */ int nargs; /* number of arguments */

View File

@ -15,10 +15,8 @@
#include "postgres.h" #include "postgres.h"
#include "utils/memutils.h"
#include "plpgsql.h" #include "plpgsql.h"
#include "utils/memutils.h"
/* ---------- /* ----------
* Local variables for namespace handling * Local variables for namespace handling

View File

@ -20,15 +20,13 @@
#include "catalog/pg_type.h" #include "catalog/pg_type.h"
#include "funcapi.h" #include "funcapi.h"
#include "miscadmin.h" #include "miscadmin.h"
#include "plpgsql.h"
#include "utils/builtins.h" #include "utils/builtins.h"
#include "utils/guc.h" #include "utils/guc.h"
#include "utils/lsyscache.h" #include "utils/lsyscache.h"
#include "utils/syscache.h" #include "utils/syscache.h"
#include "utils/varlena.h" #include "utils/varlena.h"
#include "plpgsql.h"
static bool plpgsql_extra_checks_check_hook(char **newvalue, void **extra, GucSource source); static bool plpgsql_extra_checks_check_hook(char **newvalue, void **extra, GucSource source);
static void plpgsql_extra_warnings_assign_hook(const char *newvalue, void *extra); static void plpgsql_extra_warnings_assign_hook(const char *newvalue, void *extra);
static void plpgsql_extra_errors_assign_hook(const char *newvalue, void *extra); static void plpgsql_extra_errors_assign_hook(const char *newvalue, void *extra);

View File

@ -14,10 +14,10 @@
*/ */
#include "c.h" #include "c.h"
#include "port/pg_crc32c.h"
#include <arm_acle.h> #include <arm_acle.h>
#include "port/pg_crc32c.h"
pg_crc32c pg_crc32c
pg_comp_crc32c_armv8(pg_crc32c crc, const void *data, size_t len) pg_comp_crc32c_armv8(pg_crc32c crc, const void *data, size_t len)
{ {

View File

@ -14,10 +14,10 @@
*/ */
#include "c.h" #include "c.h"
#include "port/pg_crc32c.h"
#include <nmmintrin.h> #include <nmmintrin.h>
#include "port/pg_crc32c.h"
pg_crc32c pg_crc32c
pg_comp_crc32c_sse42(pg_crc32c crc, const void *data, size_t len) pg_comp_crc32c_sse42(pg_crc32c crc, const void *data, size_t len)
{ {

View File

@ -1,7 +1,9 @@
#include "c.h" #include "c.h"
#include "pgtar.h"
#include <sys/stat.h> #include <sys/stat.h>
#include "pgtar.h"
/* /*
* Print a numeric field in a tar header. The field starts at *s and is of * Print a numeric field in a tar header. The field starts at *s and is of
* length len; val is the value to be written. * length len; val is the value to be written.

View File

@ -13,11 +13,10 @@
#endif #endif
#include "datatype/timestamp.h" #include "datatype/timestamp.h"
#include "libpq-fe.h"
#include "pqexpbuffer.h"
#include "pg_getopt.h"
#include "isolationtester.h" #include "isolationtester.h"
#include "libpq-fe.h"
#include "pg_getopt.h"
#include "pqexpbuffer.h"
#define PREP_WAITING "isolationtester_waiting" #define PREP_WAITING "isolationtester_waiting"

View File

@ -12,10 +12,10 @@
*/ */
#include "postgres.h" #include "postgres.h"
#include "fmgr.h"
#include "access/ginblock.h" #include "access/ginblock.h"
#include "access/gin_private.h" #include "access/gin_private.h"
#include "access/htup_details.h" #include "access/htup_details.h"
#include "fmgr.h"
PG_MODULE_MAGIC; PG_MODULE_MAGIC;

View File

@ -14,12 +14,12 @@
#include "fmgr.h" #include "fmgr.h"
#include "lib/integerset.h" #include "lib/integerset.h"
#include "miscadmin.h"
#include "nodes/bitmapset.h" #include "nodes/bitmapset.h"
#include "utils/memutils.h"
#include "utils/timestamp.h"
#include "storage/block.h" #include "storage/block.h"
#include "storage/itemptr.h" #include "storage/itemptr.h"
#include "miscadmin.h" #include "utils/memutils.h"
#include "utils/timestamp.h"
/* /*
* If you enable this, the "pattern" tests will print information about * If you enable this, the "pattern" tests will print information about

View File

@ -13,19 +13,16 @@
#include "postgres.h" #include "postgres.h"
#include "catalog/pg_type.h"
#include "fmgr.h" #include "fmgr.h"
#include "miscadmin.h" #include "miscadmin.h"
#include "test_rls_hooks.h"
#include "catalog/pg_type.h"
#include "nodes/makefuncs.h"
#include "nodes/makefuncs.h" #include "nodes/makefuncs.h"
#include "parser/parse_clause.h" #include "parser/parse_clause.h"
#include "parser/parse_collate.h" #include "parser/parse_collate.h"
#include "parser/parse_node.h" #include "parser/parse_node.h"
#include "parser/parse_relation.h" #include "parser/parse_relation.h"
#include "rewrite/rowsecurity.h" #include "rewrite/rowsecurity.h"
#include "test_rls_hooks.h"
#include "utils/acl.h" #include "utils/acl.h"
#include "utils/rel.h" #include "utils/rel.h"
#include "utils/relcache.h" #include "utils/relcache.h"

View File

@ -20,9 +20,8 @@
#include "postmaster/bgworker.h" #include "postmaster/bgworker.h"
#include "storage/procsignal.h" #include "storage/procsignal.h"
#include "storage/shm_toc.h" #include "storage/shm_toc.h"
#include "utils/memutils.h"
#include "test_shm_mq.h" #include "test_shm_mq.h"
#include "utils/memutils.h"
typedef struct typedef struct
{ {

Some files were not shown because too many files have changed in this diff Show More