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
d1e9a761
Commit
d1e9a761
authored
Nov 05, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another run through.
This gets us a clean compile of 'common' and 'gist' with *clean* #include files
parent
1c3a7767
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
34 additions
and
44 deletions
+34
-44
src/include/access/genam.h
src/include/access/genam.h
+5
-5
src/include/access/gist.h
src/include/access/gist.h
+4
-4
src/include/access/gistscan.h
src/include/access/gistscan.h
+3
-3
src/include/access/giststrat.h
src/include/access/giststrat.h
+3
-0
src/include/access/istrat.h
src/include/access/istrat.h
+1
-5
src/include/access/rtree.h
src/include/access/rtree.h
+5
-1
src/include/catalog/index.h
src/include/catalog/index.h
+5
-6
src/include/executor/execdesc.h
src/include/executor/execdesc.h
+1
-2
src/include/executor/executor.h
src/include/executor/executor.h
+6
-16
src/include/nodes/plannodes.h
src/include/nodes/plannodes.h
+1
-2
No files found.
src/include/access/genam.h
View file @
d1e9a761
...
@@ -6,17 +6,17 @@
...
@@ -6,17 +6,17 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: genam.h,v 1.
3 1996/11/03 12:12:22
scrappy Exp $
* $Id: genam.h,v 1.
4 1996/11/05 08:18:09
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef GENAM_H
#ifndef GENAM_H
#define GENAM_H
#define GENAM_H
#include
"access/itup.h"
#include
<access/sdir.h>
#include
"access/relscan.h"
#include
<access/funcindex.h>
#include
"access/sdir.h"
#include
<access/relscan.h>
#include
"access/funcindex.h"
#include
<access/itup.h>
/* ----------------
/* ----------------
* generalized index_ interface routines
* generalized index_ interface routines
...
...
src/include/access/gist.h
View file @
d1e9a761
...
@@ -12,10 +12,10 @@
...
@@ -12,10 +12,10 @@
#ifndef GIST_H
#ifndef GIST_H
#define GIST_H
#define GIST_H
#include
"storage/off.h"
#include
<storage/page.h>
#include
"utils/rel.h"
#include
<storage/block.h>
#include
"storage/block.h"
#include
<utils/rel.h>
#include
"storage/page.h"
#include
<storage/off.h>
/*
/*
** You can have as many strategies as you please in GiSTs, as
** You can have as many strategies as you please in GiSTs, as
...
...
src/include/access/gistscan.h
View file @
d1e9a761
...
@@ -11,9 +11,9 @@
...
@@ -11,9 +11,9 @@
*/
*/
#ifndef GISTSCAN_H
#ifndef GISTSCAN_H
#include
"utils/rel.h"
#include
<storage/off.h>
#include
"storage/block.h"
#include
<storage/block.h>
#include
"storage/off.h"
#include
<utils/rel.h>
void
gistadjscans
(
Relation
r
,
int
op
,
BlockNumber
blkno
,
OffsetNumber
offnum
);
void
gistadjscans
(
Relation
r
,
int
op
,
BlockNumber
blkno
,
OffsetNumber
offnum
);
...
...
src/include/access/giststrat.h
View file @
d1e9a761
...
@@ -12,6 +12,9 @@
...
@@ -12,6 +12,9 @@
#ifndef GISTSTRAT_H
#ifndef GISTSTRAT_H
#define GISTSTRAT_H
#define GISTSTRAT_H
#include <access/strat.h>
#include <utils/rel.h>
StrategyNumber
StrategyNumber
RelationGetGISTStrategy
(
Relation
r
,
AttrNumber
attnum
,
RegProcedure
proc
);
RelationGetGISTStrategy
(
Relation
r
,
AttrNumber
attnum
,
RegProcedure
proc
);
...
...
src/include/access/istrat.h
View file @
d1e9a761
...
@@ -6,17 +6,13 @@
...
@@ -6,17 +6,13 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: istrat.h,v 1.
2 1996/10/31 09:46:41
scrappy Exp $
* $Id: istrat.h,v 1.
3 1996/11/05 08:18:13
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef ISTRAT_H
#ifndef ISTRAT_H
#define ISTRAT_H
#define ISTRAT_H
#include "access/attnum.h"
#include "access/skey.h"
#include "access/strat.h"
#include "utils/rel.h"
/* for Relation */
/*
/*
* StrategyNumberIsValid --
* StrategyNumberIsValid --
...
...
src/include/access/rtree.h
View file @
d1e9a761
...
@@ -6,13 +6,17 @@
...
@@ -6,13 +6,17 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: rtree.h,v 1.
1 1996/08/27 21:50:21
scrappy Exp $
* $Id: rtree.h,v 1.
2 1996/11/05 08:18:14
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef RTREE_H
#ifndef RTREE_H
#define RTREE_H
#define RTREE_H
#include <access/skey.h>
#include <storage/block.h>
#include <storage/off.h>
/* see rtstrat.c for what all this is about */
/* see rtstrat.c for what all this is about */
#define RTNStrategies 8
#define RTNStrategies 8
#define RTLeftStrategyNumber 1
#define RTLeftStrategyNumber 1
...
...
src/include/catalog/index.h
View file @
d1e9a761
...
@@ -6,18 +6,17 @@
...
@@ -6,18 +6,17 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: index.h,v 1.
2 1996/11/03 12:12:28
scrappy Exp $
* $Id: index.h,v 1.
3 1996/11/05 08:18:24
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef INDEX_H
#ifndef INDEX_H
#define INDEX_H
#define INDEX_H
#include "nodes/execnodes.h"
#include <nodes/execnodes.h>
#include "access/htup.h"
#include <nodes/parsenodes.h>
#include "access/itup.h"
#include <access/itup.h>
#include "nodes/parsenodes.h"
#include <access/funcindex.h>
#include "storage/buf.h"
extern
Form_pg_am
extern
Form_pg_am
AccessMethodObjectIdGetAccessMethodTupleForm
(
Oid
accessMethodObjectId
);
AccessMethodObjectIdGetAccessMethodTupleForm
(
Oid
accessMethodObjectId
);
...
...
src/include/executor/execdesc.h
View file @
d1e9a761
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: execdesc.h,v 1.
2 1996/11/04 12:11:40
scrappy Exp $
* $Id: execdesc.h,v 1.
3 1996/11/05 08:18:31
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
#include <tcop/dest.h>
#include <tcop/dest.h>
#include <nodes/plannodes.h>
#include <nodes/plannodes.h>
#include <nodes/parsenodes.h>
#include <nodes/parsenodes.h>
#include <nodes/nodes.h>
/* ----------------
/* ----------------
* query descriptor:
* query descriptor:
...
...
src/include/executor/executor.h
View file @
d1e9a761
...
@@ -6,32 +6,22 @@
...
@@ -6,32 +6,22 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: executor.h,v 1.
3 1996/11/03 12:12:39
scrappy Exp $
* $Id: executor.h,v 1.
4 1996/11/05 08:18:34
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef EXECUTOR_H
#ifndef EXECUTOR_H
#define EXECUTOR_H
#define EXECUTOR_H
#include <catalog/pg_index.h>
#include <access/itup.h>
#include <stdio.h>
#include <executor/execdesc.h>
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* #includes
* ----------------------------------------------------------------
* ----------------------------------------------------------------
*/
*/
#include <stdio.h>
#include "access/itup.h"
#include "access/relscan.h"
#include "access/skey.h"
#include "access/sdir.h"
#include "catalog/pg_index.h"
#include "executor/execdesc.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
/*
/*
* prototypes from functions in execAmi.c
* prototypes from functions in execAmi.c
...
...
src/include/nodes/plannodes.h
View file @
d1e9a761
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: plannodes.h,v 1.
4 1996/11/04 12:11
:44 scrappy Exp $
* $Id: plannodes.h,v 1.
5 1996/11/05 08:18
:44 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
#define PLANNODES_H
#define PLANNODES_H
#include <nodes/execnodes.h>
#include <nodes/execnodes.h>
#include <nodes/nodes.h>
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* Executor State types are used in the plannode structures
* Executor State types are used in the plannode structures
...
...
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