mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Cosmetic changes to ordering of #include files
This commit is contained in:
parent
9a7fda57ee
commit
82b83f6f71
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.8 1996/10/20 22:04:36 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.9 1996/10/21 11:49:35 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* The old interface functions have been converted to macros
|
* The old interface functions have been converted to macros
|
||||||
@ -17,35 +17,42 @@
|
|||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "storage/block.h"
|
|
||||||
#include "storage/off.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
|
||||||
|
|
||||||
#include "storage/buf.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
#include "storage/itemid.h"
|
|
||||||
#include "storage/item.h"
|
|
||||||
#include "storage/bufpage.h"
|
|
||||||
|
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "access/attnum.h"
|
#include "access/attnum.h"
|
||||||
#include "nodes/pg_list.h"
|
#include "access/tupmacs.h"
|
||||||
#include "access/tupdesc.h"
|
|
||||||
#include "storage/fd.h"
|
|
||||||
#include "catalog/pg_am.h"
|
#include "catalog/pg_am.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
#include "catalog/pg_class.h"
|
#include "catalog/pg_class.h"
|
||||||
#include "nodes/nodes.h"
|
#include "nodes/nodes.h"
|
||||||
#include "rewrite/prs2lock.h"
|
#include "nodes/pg_list.h"
|
||||||
|
#include "storage/block.h"
|
||||||
|
#include "storage/buf.h"
|
||||||
|
#include "storage/fd.h"
|
||||||
|
#include "storage/ipc.h"
|
||||||
|
#include "storage/item.h"
|
||||||
|
#include "storage/itemid.h"
|
||||||
|
#include "storage/off.h"
|
||||||
|
#include "utils/memutils.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
|
#include "utils/palloc.h"
|
||||||
|
|
||||||
#include "access/skey.h"
|
#include "access/skey.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "rewrite/prs2lock.h"
|
||||||
|
#include "storage/bufpage.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
|
||||||
#include "access/strat.h"
|
#include "access/strat.h"
|
||||||
|
|
||||||
|
#include "access/htup.h"
|
||||||
#include "utils/rel.h"
|
#include "utils/rel.h"
|
||||||
|
|
||||||
#include "utils/memutils.h"
|
#include "storage/bufmgr.h"
|
||||||
|
|
||||||
|
#include "access/transam.h"
|
||||||
|
|
||||||
#ifndef HAVE_MEMMOVE
|
#ifndef HAVE_MEMMOVE
|
||||||
# include "regex/utils.h"
|
# include "regex/utils.h"
|
||||||
@ -53,14 +60,6 @@
|
|||||||
# include <string.h>
|
# include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "access/tupmacs.h"
|
|
||||||
|
|
||||||
#include "utils/palloc.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include "storage/ipc.h"
|
|
||||||
#include "storage/bufmgr.h"
|
|
||||||
#include "access/transam.h"
|
|
||||||
|
|
||||||
/* this is so the sparcstation debugger works */
|
/* this is so the sparcstation debugger works */
|
||||||
|
|
||||||
|
@ -7,49 +7,43 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.5 1996/10/20 22:04:39 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.6 1996/10/21 11:49:36 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
|
||||||
|
|
||||||
#include "storage/block.h"
|
|
||||||
#include "storage/off.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
|
||||||
|
|
||||||
|
#include "postgres.h"
|
||||||
|
#include "fmgr.h"
|
||||||
#include "access/attnum.h"
|
#include "access/attnum.h"
|
||||||
#include "access/skey.h"
|
|
||||||
|
|
||||||
#include "storage/buf.h"
|
|
||||||
|
|
||||||
#include "storage/itemid.h"
|
|
||||||
|
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "access/attnum.h"
|
|
||||||
#include "nodes/pg_list.h"
|
|
||||||
#include "access/tupdesc.h"
|
|
||||||
#include "storage/fd.h"
|
|
||||||
#include "catalog/pg_am.h"
|
#include "catalog/pg_am.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
#include "catalog/pg_class.h"
|
#include "catalog/pg_class.h"
|
||||||
#include "nodes/nodes.h"
|
#include "nodes/nodes.h"
|
||||||
|
#include "nodes/pg_list.h"
|
||||||
|
#include "storage/block.h"
|
||||||
|
#include "storage/buf.h"
|
||||||
|
#include "storage/fd.h"
|
||||||
|
#include "storage/item.h"
|
||||||
|
#include "storage/itemid.h"
|
||||||
|
#include "storage/off.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
|
|
||||||
|
#include "access/skey.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "access/xact.h"
|
||||||
#include "rewrite/prs2lock.h"
|
#include "rewrite/prs2lock.h"
|
||||||
|
#include "storage/bufpage.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
|
||||||
#include "access/strat.h"
|
#include "access/strat.h"
|
||||||
|
|
||||||
|
#include "access/htup.h"
|
||||||
#include "utils/rel.h"
|
#include "utils/rel.h"
|
||||||
|
|
||||||
#include "storage/item.h"
|
|
||||||
#include "storage/bufpage.h"
|
|
||||||
|
|
||||||
#include "utils/tqual.h"
|
|
||||||
|
|
||||||
#include "access/xact.h"
|
|
||||||
|
|
||||||
#include "fmgr.h"
|
|
||||||
|
|
||||||
#include "access/heaptuple.h"
|
#include "access/heaptuple.h"
|
||||||
|
#include "utils/tqual.h"
|
||||||
|
|
||||||
/* ----------------
|
/* ----------------
|
||||||
* heap_keytest
|
* heap_keytest
|
||||||
|
@ -8,46 +8,46 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.6 1996/10/21 07:18:08 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.7 1996/10/21 11:49:37 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
|
||||||
|
|
||||||
#include "storage/block.h"
|
|
||||||
#include "storage/off.h"
|
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "access/attnum.h"
|
|
||||||
#include "nodes/pg_list.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include "access/tupdesc.h"
|
|
||||||
#include "access/itup.h"
|
|
||||||
|
|
||||||
#include "utils/memutils.h"
|
|
||||||
#include "access/ibit.h"
|
|
||||||
|
|
||||||
#include "access/tupmacs.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "utils/palloc.h"
|
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "storage/fd.h"
|
|
||||||
|
#include "postgres.h"
|
||||||
|
#include "access/attnum.h"
|
||||||
|
#include "access/tupmacs.h"
|
||||||
#include "catalog/pg_am.h"
|
#include "catalog/pg_am.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
#include "catalog/pg_class.h"
|
#include "catalog/pg_class.h"
|
||||||
#include "nodes/nodes.h"
|
#include "nodes/nodes.h"
|
||||||
#include "rewrite/prs2lock.h"
|
#include "nodes/pg_list.h"
|
||||||
#include "access/skey.h"
|
#include "storage/block.h"
|
||||||
#include "access/strat.h"
|
|
||||||
#include "utils/rel.h"
|
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include "utils/tqual.h"
|
|
||||||
#include "storage/buf.h"
|
#include "storage/buf.h"
|
||||||
|
#include "storage/fd.h"
|
||||||
|
#include "storage/off.h"
|
||||||
|
#include "utils/memutils.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
|
#include "utils/palloc.h"
|
||||||
|
|
||||||
|
#include "access/ibit.h"
|
||||||
|
#include "access/skey.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "rewrite/prs2lock.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
|
||||||
|
#include "access/strat.h"
|
||||||
|
|
||||||
|
#include "access/itup.h"
|
||||||
|
#include "access/htup.h"
|
||||||
|
#include "utils/rel.h"
|
||||||
|
|
||||||
|
#include "utils/tqual.h"
|
||||||
|
|
||||||
#include "access/relscan.h"
|
#include "access/relscan.h"
|
||||||
|
|
||||||
#include "access/heapam.h"
|
#include "access/heapam.h"
|
||||||
|
|
||||||
static Size IndexInfoFindDataOffset(unsigned short t_info);
|
static Size IndexInfoFindDataOffset(unsigned short t_info);
|
||||||
|
@ -7,29 +7,29 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.5 1996/10/20 22:04:43 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.6 1996/10/21 11:49:38 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <time.h>
|
||||||
|
|
||||||
#include "storage/block.h"
|
#include "postgres.h"
|
||||||
#include "storage/off.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "access/attnum.h"
|
#include "access/attnum.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
|
#include "executor/execdebug.h"
|
||||||
#include "nodes/pg_list.h"
|
#include "nodes/pg_list.h"
|
||||||
#include "access/tupdesc.h"
|
#include "storage/off.h"
|
||||||
#include "access/itup.h"
|
#include "storage/block.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
|
|
||||||
#include "access/skey.h"
|
#include "access/skey.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
|
||||||
#include <time.h>
|
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
#include "access/htup.h"
|
||||||
|
#include "access/itup.h"
|
||||||
|
|
||||||
#include "executor/execdebug.h"
|
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
* index scan key qualification code
|
* index scan key qualification code
|
||||||
|
@ -8,51 +8,47 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.5 1996/10/20 22:04:45 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.6 1996/10/21 11:49:39 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
|
||||||
|
|
||||||
#include "storage/block.h"
|
|
||||||
#include "storage/off.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include <time.h>
|
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
|
||||||
|
|
||||||
#include "access/attnum.h"
|
|
||||||
#include "utils/syscache.h"
|
|
||||||
|
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "nodes/pg_list.h"
|
|
||||||
#include "access/tupdesc.h"
|
|
||||||
#include "storage/fd.h"
|
|
||||||
#include "catalog/pg_am.h"
|
|
||||||
#include "catalog/pg_class.h"
|
|
||||||
#include "nodes/nodes.h"
|
|
||||||
#include "rewrite/prs2lock.h"
|
|
||||||
#include "access/skey.h"
|
|
||||||
#include "access/strat.h"
|
|
||||||
#include "utils/rel.h"
|
|
||||||
#include "catalog/pg_type.h"
|
|
||||||
|
|
||||||
#include "storage/buf.h"
|
|
||||||
|
|
||||||
#include "access/heaptuple.h" /* Prototypes */
|
|
||||||
#include "fmgr.h" /* Prototypes */
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <time.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
|
|
||||||
|
#include "postgres.h"
|
||||||
|
#include "fmgr.h"
|
||||||
|
#include "access/attnum.h"
|
||||||
|
#include "catalog/pg_am.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
|
#include "catalog/pg_class.h"
|
||||||
#include "libpq/pqcomm.h"
|
#include "libpq/pqcomm.h"
|
||||||
#include "libpq/libpq.h"
|
#include "nodes/nodes.h"
|
||||||
|
#include "nodes/pg_list.h"
|
||||||
#include <stdio.h>
|
#include "storage/block.h"
|
||||||
|
#include "storage/buf.h"
|
||||||
|
#include "storage/fd.h"
|
||||||
|
#include "storage/off.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
#include "utils/palloc.h"
|
#include "utils/palloc.h"
|
||||||
|
|
||||||
|
#include "libpq/libpq.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "rewrite/prs2lock.h"
|
||||||
|
#include "access/skey.h"
|
||||||
|
|
||||||
|
#include "access/strat.h"
|
||||||
|
|
||||||
|
#include "access/htup.h"
|
||||||
|
#include "utils/rel.h"
|
||||||
|
|
||||||
|
#include "catalog/pg_type.h"
|
||||||
|
#include "utils/syscache.h"
|
||||||
|
#include "access/heaptuple.h"
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
* printtup / debugtup support
|
* printtup / debugtup support
|
||||||
* ----------------------------------------------------------------
|
* ----------------------------------------------------------------
|
||||||
|
@ -7,17 +7,18 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.4 1996/10/20 22:04:47 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.5 1996/10/21 11:49:40 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
|
#include "fmgr.h"
|
||||||
#include "access/attnum.h"
|
#include "access/attnum.h"
|
||||||
|
|
||||||
#include "access/skey.h"
|
#include "access/skey.h"
|
||||||
|
|
||||||
#include "fmgr.h"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ScanKeyEntryIsLegal --
|
* ScanKeyEntryIsLegal --
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.4 1996/10/20 22:04:49 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.5 1996/10/21 11:49:41 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* some of the executor utility code such as "ExecTypeFromTL" should be
|
* some of the executor utility code such as "ExecTypeFromTL" should be
|
||||||
@ -16,50 +16,47 @@
|
|||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include "catalog/pg_attribute.h"
|
|
||||||
#include "access/attnum.h"
|
|
||||||
#include "nodes/pg_list.h"
|
|
||||||
#include "access/tupdesc.h"
|
|
||||||
|
|
||||||
#include "storage/block.h"
|
|
||||||
#include "storage/off.h"
|
|
||||||
#include "storage/itemptr.h"
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "utils/nabstime.h"
|
|
||||||
#include "access/htup.h"
|
|
||||||
|
|
||||||
#include "storage/fd.h"
|
#include "postgres.h"
|
||||||
|
#include "access/attnum.h"
|
||||||
#include "catalog/pg_am.h"
|
#include "catalog/pg_am.h"
|
||||||
|
#include "catalog/pg_attribute.h"
|
||||||
#include "catalog/pg_class.h"
|
#include "catalog/pg_class.h"
|
||||||
#include "nodes/nodes.h"
|
#include "nodes/nodes.h"
|
||||||
#include "rewrite/prs2lock.h"
|
#include "nodes/pg_list.h"
|
||||||
#include "access/skey.h"
|
#include "storage/block.h"
|
||||||
#include "access/strat.h"
|
#include "storage/fd.h"
|
||||||
#include "utils/rel.h"
|
#include "storage/off.h"
|
||||||
#include "catalog/pg_type.h"
|
#include "utils/geo-decls.h"
|
||||||
|
#include "utils/nabstime.h"
|
||||||
#include "utils/syscache.h"
|
|
||||||
|
|
||||||
#include "parser/catalog_utils.h"
|
|
||||||
|
|
||||||
#include "nodes/primnodes.h"
|
|
||||||
#include "utils/tqual.h"
|
|
||||||
#include "nodes/parsenodes.h"
|
|
||||||
|
|
||||||
#include "utils/palloc.h"
|
#include "utils/palloc.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include "nodes/primnodes.h"
|
||||||
|
#include "access/tupdesc.h"
|
||||||
|
#include "rewrite/prs2lock.h"
|
||||||
|
#include "storage/itemptr.h"
|
||||||
|
#include "access/skey.h"
|
||||||
|
|
||||||
|
#include "access/strat.h"
|
||||||
|
|
||||||
|
#include "access/htup.h"
|
||||||
|
#include "utils/rel.h"
|
||||||
|
|
||||||
|
#include "catalog/pg_type.h"
|
||||||
|
#include "utils/builtins.h"
|
||||||
|
#include "utils/syscache.h"
|
||||||
|
#include "utils/tqual.h"
|
||||||
|
|
||||||
|
#include "nodes/parsenodes.h"
|
||||||
|
#include "parser/catalog_utils.h"
|
||||||
|
|
||||||
#ifndef HAVE_MEMMOVE
|
#ifndef HAVE_MEMMOVE
|
||||||
# include "regex/utils.h"
|
# include "regex/utils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "utils/geo-decls.h"
|
|
||||||
#include "utils/builtins.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
* CreateTemplateTupleDesc
|
* CreateTemplateTupleDesc
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user