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
b844dd3f
Commit
b844dd3f
authored
Jul 13, 2006
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More include file adjustments.
parent
66c15dfd
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
34 additions
and
21 deletions
+34
-21
src/backend/nodes/tidbitmap.c
src/backend/nodes/tidbitmap.c
+2
-2
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/indxpath.c
+2
-1
src/backend/utils/time/tqual.c
src/backend/utils/time/tqual.c
+2
-1
src/include/access/genam.h
src/include/access/genam.h
+1
-2
src/include/access/hio.h
src/include/access/hio.h
+3
-1
src/include/access/htup.h
src/include/access/htup.h
+1
-2
src/include/access/relscan.h
src/include/access/relscan.h
+2
-1
src/include/access/tuptoaster.h
src/include/access/tuptoaster.h
+2
-2
src/include/catalog/indexing.h
src/include/catalog/indexing.h
+2
-2
src/include/commands/vacuum.h
src/include/commands/vacuum.h
+4
-1
src/include/executor/hashjoin.h
src/include/executor/hashjoin.h
+2
-1
src/include/executor/tuptable.h
src/include/executor/tuptable.h
+3
-2
src/include/utils/catcache.h
src/include/utils/catcache.h
+3
-1
src/include/utils/inval.h
src/include/utils/inval.h
+2
-1
src/include/utils/lsyscache.h
src/include/utils/lsyscache.h
+3
-1
No files found.
src/backend/nodes/tidbitmap.c
View file @
b844dd3f
...
...
@@ -23,7 +23,7 @@
* Copyright (c) 2003-2006, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.
9 2006/03/05 15:58:28
momjian Exp $
* $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.
10 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -33,9 +33,9 @@
#include "access/htup.h"
#include "nodes/tidbitmap.h"
#include "storage/bufpage.h"
#include "utils/hsearch.h"
/*
* The maximum number of tuples per page is not large (typically 256 with
* 8K pages, or 1024 with 32K pages). So there's not much point in making
...
...
src/backend/optimizer/path/indxpath.c
View file @
b844dd3f
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.2
09 2006/07/01 18:38:32 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.2
10 2006/07/13 17:47:01 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,6 +18,7 @@
#include <math.h>
#include "access/skey.h"
#include "catalog/pg_am.h"
#include "catalog/pg_opclass.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_type.h"
...
...
src/backend/utils/time/tqual.c
View file @
b844dd3f
...
...
@@ -32,7 +32,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.9
4 2006/07/13 16:49:18
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.9
5 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -43,6 +43,7 @@
#include "access/subtrans.h"
#include "access/transam.h"
#include "access/xact.h"
#include "storage/bufmgr.h"
#include "storage/procarray.h"
#include "utils/tqual.h"
...
...
src/include/access/genam.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/access/genam.h,v 1.6
3 2006/07/13 16:49:18
momjian Exp $
* $PostgreSQL: pgsql/src/include/access/genam.h,v 1.6
4 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,7 +18,6 @@
#include "access/sdir.h"
#include "nodes/primnodes.h"
/*
* Struct for statistics returned by ambuild
*/
...
...
src/include/access/hio.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/access/hio.h,v 1.3
1 2006/07/02 02:23:22
momjian Exp $
* $PostgreSQL: pgsql/src/include/access/hio.h,v 1.3
2 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,6 +15,8 @@
#define HIO_H
#include "access/htup.h"
#include "utils/rel.h"
#include "storage/buf.h"
extern
void
RelationPutHeapTuple
(
Relation
relation
,
Buffer
buffer
,
HeapTuple
tuple
);
...
...
src/include/access/htup.h
View file @
b844dd3f
...
...
@@ -7,14 +7,13 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/access/htup.h,v 1.8
4 2006/07/13 16:49:19
momjian Exp $
* $PostgreSQL: pgsql/src/include/access/htup.h,v 1.8
5 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HTUP_H
#define HTUP_H
#include "storage/bufpage.h"
#include "storage/itemptr.h"
#include "storage/relfilenode.h"
...
...
src/include/access/relscan.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/access/relscan.h,v 1.4
6 2006/07/13 16:49:19
momjian Exp $
* $PostgreSQL: pgsql/src/include/access/relscan.h,v 1.4
7 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,6 +15,7 @@
#define RELSCAN_H
#include "access/skey.h"
#include "storage/bufpage.h"
#include "utils/rel.h"
#include "utils/tqual.h"
...
...
src/include/access/tuptoaster.h
View file @
b844dd3f
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.2
7 2006/07/13 16:49:19
momjian Exp $
* $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.2
8 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -14,7 +14,7 @@
#define TUPTOASTER_H
#include "access/htup.h"
#include "storage/bufpage.h"
/*
* This enables de-toasting of index entries. Needed until VACUUM is
...
...
src/include/catalog/indexing.h
View file @
b844dd3f
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/catalog/indexing.h,v 1.9
4 2006/03/05 15:58:54
momjian Exp $
* $PostgreSQL: pgsql/src/include/catalog/indexing.h,v 1.9
5 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,7 +16,7 @@
#define INDEXING_H
#include "access/htup.h"
#include "utils/rel.h"
/*
* The state object used by CatalogOpenIndexes and friends is actually the
...
...
src/include/commands/vacuum.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.6
5 2006/07/13 16:49:19
momjian Exp $
* $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.6
6 2006/07/13 17:47:01
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,10 +15,13 @@
#define VACUUM_H
#include "access/htup.h"
#include "access/tupdesc.h"
#include "catalog/pg_attribute.h"
#include "catalog/pg_statistic.h"
#include "catalog/pg_type.h"
#include "nodes/parsenodes.h"
#include "storage/lock.h"
#include "utils/rel.h"
/*----------
* ANALYZE builds one of these structs for each attribute (column) that is
...
...
src/include/executor/hashjoin.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/executor/hashjoin.h,v 1.
39 2006/06/27 21:31:20 tgl
Exp $
* $PostgreSQL: pgsql/src/include/executor/hashjoin.h,v 1.
40 2006/07/13 17:47:02 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,6 +15,7 @@
#define HASHJOIN_H
#include "access/htup.h"
#include "fmgr.h"
#include "storage/buffile.h"
/* ----------------------------------------------------------------
...
...
src/include/executor/tuptable.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/executor/tuptable.h,v 1.3
4 2006/07/13 16:49:19
momjian Exp $
* $PostgreSQL: pgsql/src/include/executor/tuptable.h,v 1.3
5 2006/07/13 17:47:02
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,7 +15,8 @@
#define TUPTABLE_H
#include "access/htup.h"
#include "access/tupdesc.h"
#include "storage/buf.h"
/*----------
* The executor stores tuples in a "tuple table" which is composed of
...
...
src/include/utils/catcache.h
View file @
b844dd3f
...
...
@@ -13,7 +13,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/utils/catcache.h,v 1.
59 2006/06/15 02:08:09 tgl
Exp $
* $PostgreSQL: pgsql/src/include/utils/catcache.h,v 1.
60 2006/07/13 17:47:02 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,7 +22,9 @@
#include "access/htup.h"
#include "access/skey.h"
#include "access/tupdesc.h"
#include "lib/dllist.h"
#include "utils/rel.h"
/*
* struct catctup: individual tuple in the cache.
...
...
src/include/utils/inval.h
View file @
b844dd3f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/utils/inval.h,v 1.3
8 2006/03/05 15:59:07
momjian Exp $
* $PostgreSQL: pgsql/src/include/utils/inval.h,v 1.3
9 2006/07/13 17:47:02
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,6 +15,7 @@
#define INVAL_H
#include "access/htup.h"
#include "utils/rel.h"
typedef
void
(
*
CacheCallbackFunction
)
(
Datum
arg
,
Oid
relid
);
...
...
src/include/utils/lsyscache.h
View file @
b844dd3f
...
...
@@ -6,14 +6,16 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/utils/lsyscache.h,v 1.10
4 2006/04/05 22:11:57 tgl
Exp $
* $PostgreSQL: pgsql/src/include/utils/lsyscache.h,v 1.10
5 2006/07/13 17:47:02 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef LSYSCACHE_H
#define LSYSCACHE_H
#include "access/attnum.h"
#include "access/htup.h"
#include "nodes/pg_list.h"
/* I/O function selector for get_type_io_data */
typedef
enum
IOFuncSelector
...
...
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