Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
82b83f6f
Commit
82b83f6f
authored
Oct 21, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic changes to ordering of #include files
parent
9a7fda57
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
133 additions
and
146 deletions
+133
-146
src/backend/access/common/heaptuple.c
src/backend/access/common/heaptuple.c
+27
-28
src/backend/access/common/heapvalid.c
src/backend/access/common/heapvalid.c
+20
-26
src/backend/access/common/indextuple.c
src/backend/access/common/indextuple.c
+25
-25
src/backend/access/common/indexvalid.c
src/backend/access/common/indexvalid.c
+11
-11
src/backend/access/common/printtup.c
src/backend/access/common/printtup.c
+25
-29
src/backend/access/common/scankey.c
src/backend/access/common/scankey.c
+3
-2
src/backend/access/common/tupdesc.c
src/backend/access/common/tupdesc.c
+22
-25
No files found.
src/backend/access/common/heaptuple.c
View file @
82b83f6f
...
@@ -8,7 +8,7 @@
...
@@ -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 @@
...
@@ -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 "storage/itemid.h"
#include "storage/item.h"
#include "storage/bufpage.h"
#include "
catalog/pg_attribute
.h"
#include "
postgres
.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 @@
...
@@ -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 */
...
...
src/backend/access/common/heapvalid.c
View file @
82b83f6f
...
@@ -7,49 +7,43 @@
...
@@ -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 "catalog/pg_am.h"
#include "catalog/pg_attribute.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "storage/block.h"
#include "storage/buf.h"
#include "storage/buf.h"
#include "storage/fd.h"
#include "storage/item.h"
#include "storage/itemid.h"
#include "storage/itemid.h"
#include "storage/off.h"
#include "utils/nabstime.h"
#include "catalog/pg_attribute.h"
#include "access/skey.h"
#include "access/attnum.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
#include "access/xact.h"
#include "catalog/pg_am.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
#include "rewrite/prs2lock.h"
#include "rewrite/prs2lock.h"
#include "access/strat.h"
#include "utils/rel.h"
#include "storage/item.h"
#include "storage/bufpage.h"
#include "storage/bufpage.h"
#include "storage/itemptr.h"
#include "utils/tqual.h"
#include "access/strat.h"
#include "access/xact.h"
#include "fmgr.h"
#include "access/htup.h"
#include "utils/rel.h"
#include "access/heaptuple.h"
#include "access/heaptuple.h"
#include "utils/tqual.h"
/* ----------------
/* ----------------
* heap_keytest
* heap_keytest
...
...
src/backend/access/common/indextuple.c
View file @
82b83f6f
...
@@ -8,46 +8,46 @@
...
@@ -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 <string.h>
#include <time.h>
#include "storage/block.h"
#include "postgres.h"
#include "storage/off.h"
#include "catalog/pg_attribute.h"
#include "access/attnum.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 "access/tupmacs.h"
#include <string.h>
#include "utils/palloc.h"
#include <time.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/off.h"
#include "utils/memutils.h"
#include "utils/nabstime.h"
#include "utils/palloc.h"
#include "access/ibit.h"
#include "access/skey.h"
#include "access/skey.h"
#include "access/tupdesc.h"
#include "rewrite/prs2lock.h"
#include "storage/itemptr.h"
#include "access/strat.h"
#include "access/strat.h"
#include "utils/rel.h"
#include "
utils/nabstime
.h"
#include "
access/itup
.h"
#include "access/htup.h"
#include "access/htup.h"
#include "storage/itemptr.h"
#include "utils/rel.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
#include "storage/buf.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
);
...
...
src/backend/access/common/indexvalid.c
View file @
82b83f6f
...
@@ -7,29 +7,29 @@
...
@@ -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
...
...
src/backend/access/common/printtup.c
View file @
82b83f6f
...
@@ -8,50 +8,46 @@
...
@@ -8,50 +8,46 @@
*
*
*
*
* 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 <stdio.h>
#include <sys/types.h>
#include "storage/block.h"
#include "storage/off.h"
#include "storage/itemptr.h"
#include <time.h>
#include <time.h>
#include "utils/nabstime.h"
#include <netinet/in.h>
#include "access/htup.h"
#include "postgres.h"
#include "fmgr.h"
#include "access/attnum.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_am.h"
#include "catalog/pg_attribute.h"
#include "catalog/pg_class.h"
#include "catalog/pg_class.h"
#include "libpq/pqcomm.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 "catalog/pg_type.h"
#include "storage/buf.h"
#include "storage/buf.h"
#include "storage/fd.h"
#include "storage/off.h"
#include "utils/nabstime.h"
#include "utils/palloc.h"
#include "access/heaptuple.h"
/* Prototypes */
#include "fmgr.h"
/* Prototypes */
#include <stdio.h>
#include <sys/types.h>
#include <netinet/in.h>
#include "libpq/pqcomm.h"
#include "libpq/libpq.h"
#include "libpq/libpq.h"
#include "storage/itemptr.h"
#include "access/tupdesc.h"
#include "rewrite/prs2lock.h"
#include "access/skey.h"
#include
<stdio.h>
#include
"access/strat.h"
#include "utils/palloc.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
...
...
src/backend/access/common/scankey.c
View file @
82b83f6f
...
@@ -7,17 +7,18 @@
...
@@ -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 --
...
...
src/backend/access/common/tupdesc.c
View file @
82b83f6f
...
@@ -7,7 +7,7 @@
...
@@ -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 @@
...
@@ -16,50 +16,47 @@
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include <string.h>
#include <stdio.h>
#include <time.h>
#include "
catalog/pg_attribute
.h"
#include "
postgres
.h"
#include "access/attnum.h"
#include "access/attnum.h"
#include "catalog/pg_am.h"
#include "catalog/pg_attribute.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/block.h"
#include "storage/block.h"
#include "storage/fd.h"
#include "storage/off.h"
#include "storage/off.h"
#include "storage/itemptr.h"
#include "utils/geo-decls.h"
#include <time.h>
#include "utils/nabstime.h"
#include "utils/nabstime.h"
#include "
access/htup
.h"
#include "
utils/palloc
.h"
#include "storage/fd.h"
#include "nodes/primnodes.h"
#include "catalog/pg_am.h"
#include "access/tupdesc.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
#include "rewrite/prs2lock.h"
#include "rewrite/prs2lock.h"
#include "storage/itemptr.h"
#include "access/skey.h"
#include "access/skey.h"
#include "access/strat.h"
#include "access/strat.h"
#include "access/htup.h"
#include "utils/rel.h"
#include "utils/rel.h"
#include "catalog/pg_type.h"
#include "catalog/pg_type.h"
#include "utils/builtins.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "parser/catalog_utils.h"
#include "nodes/primnodes.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
#include "nodes/parsenodes.h"
#include "utils/palloc.h"
#include "nodes/parsenodes.h"
#include "parser/catalog_utils.h"
#include <string.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
*
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment