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
6608278e
Commit
6608278e
authored
Nov 05, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
these ones have their dependencies cleaned up
parent
500ce42f
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
45 deletions
+33
-45
src/include/access/hash.h
src/include/access/hash.h
+6
-8
src/include/access/hio.h
src/include/access/hio.h
+3
-4
src/include/access/iqual.h
src/include/access/iqual.h
+3
-5
src/include/access/istrat.h
src/include/access/istrat.h
+3
-1
src/include/access/nbtree.h
src/include/access/nbtree.h
+9
-15
src/include/access/valid.h
src/include/access/valid.h
+4
-7
src/include/catalog/catalog.h
src/include/catalog/catalog.h
+2
-2
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+3
-3
No files found.
src/include/access/hash.h
View file @
6608278e
...
@@ -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: hash.h,v 1.
2 1996/10/20 06:35:01
scrappy Exp $
* $Id: hash.h,v 1.
3 1996/11/05 10:37:02
scrappy Exp $
*
*
* NOTES
* NOTES
* modeled after Margo Seltzer's hash implementation for unix.
* modeled after Margo Seltzer's hash implementation for unix.
...
@@ -16,13 +16,11 @@
...
@@ -16,13 +16,11 @@
#ifndef HASH_H
#ifndef HASH_H
#define HASH_H
#define HASH_H
#include "access/htup.h"
#include <access/sdir.h>
#include "access/itup.h"
#include <access/funcindex.h>
#include "storage/bufpage.h"
#include <storage/bufpage.h>
#include "access/sdir.h"
#include <access/relscan.h>
#include "access/funcindex.h"
#include <access/itup.h>
#include "storage/block.h"
#include "access/relscan.h"
/*
/*
* An overflow page is a spare page allocated for storing data whose
* An overflow page is a spare page allocated for storing data whose
...
...
src/include/access/hio.h
View file @
6608278e
...
@@ -6,17 +6,16 @@
...
@@ -6,17 +6,16 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: hio.h,v 1.
2 1996/10/31 09:46:38
scrappy Exp $
* $Id: hio.h,v 1.
3 1996/11/05 10:37:05
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef HIO_H
#ifndef HIO_H
#define HIO_H
#define HIO_H
#include <access/htup.h>
#include <utils/rel.h>
#include "storage/block.h"
#include "access/htup.h"
#include "utils/rel.h"
extern
void
RelationPutHeapTuple
(
Relation
relation
,
BlockNumber
blockIndex
,
extern
void
RelationPutHeapTuple
(
Relation
relation
,
BlockNumber
blockIndex
,
HeapTuple
tuple
);
HeapTuple
tuple
);
...
...
src/include/access/iqual.h
View file @
6608278e
...
@@ -6,18 +6,16 @@
...
@@ -6,18 +6,16 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: iqual.h,v 1.
3 1996/10/31 09:46:39
scrappy Exp $
* $Id: iqual.h,v 1.
4 1996/11/05 10:37:03
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef IQUAL_H
#ifndef IQUAL_H
#define IQUAL_H
#define IQUAL_H
#include <access/skey.h>
#include <access/itup.h>
#include "storage/itemid.h"
#include "utils/rel.h"
#include "access/skey.h"
#include "access/itup.h"
/* ----------------
/* ----------------
* index tuple qualification support
* index tuple qualification support
...
...
src/include/access/istrat.h
View file @
6608278e
...
@@ -6,13 +6,15 @@
...
@@ -6,13 +6,15 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: istrat.h,v 1.
3 1996/11/05 08:18:13
scrappy Exp $
* $Id: istrat.h,v 1.
4 1996/11/05 10:37:04
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef ISTRAT_H
#ifndef ISTRAT_H
#define ISTRAT_H
#define ISTRAT_H
#include <utils/rel.h>
#include <access/strat.h>
/*
/*
* StrategyNumberIsValid --
* StrategyNumberIsValid --
...
...
src/include/access/nbtree.h
View file @
6608278e
...
@@ -6,27 +6,21 @@
...
@@ -6,27 +6,21 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: nbtree.h,v 1.
2 1996/10/23 07:41:29
scrappy Exp $
* $Id: nbtree.h,v 1.
3 1996/11/05 10:37:08
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef NBTREE_H
#ifndef NBTREE_H
#define NBTREE_H
#define NBTREE_H
#include "access/attnum.h"
#include <access/sdir.h>
#include "access/itup.h"
#include <access/relscan.h>
#include "access/htup.h"
#include <storage/itemid.h>
#include "access/tupdesc.h"
#include <storage/page.h>
#include <access/funcindex.h>
#include "access/istrat.h"
#include <access/itup.h>
#include "access/funcindex.h"
#include <storage/buf.h>
#include "access/relscan.h"
#include <storage/itemptr.h>
#include "access/sdir.h"
#include "nodes/pg_list.h"
#include "storage/page.h"
#include "storage/bufpage.h"
#include "storage/item.h"
#include "utils/memutils.h"
/*
/*
* BTPageOpaqueData -- At the end of every page, we store a pointer
* BTPageOpaqueData -- At the end of every page, we store a pointer
...
...
src/include/access/valid.h
View file @
6608278e
...
@@ -6,19 +6,16 @@
...
@@ -6,19 +6,16 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: valid.h,v 1.
2 1996/10/31 09:46:44
scrappy Exp $
* $Id: valid.h,v 1.
3 1996/11/05 10:37:07
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef VALID_H
#ifndef VALID_H
#define VALID_H
#define VALID_H
#include "access/skey.h"
#include <utils/tqual.h>
#include "storage/buf.h"
#include <storage/bufpage.h>
#include "utils/tqual.h"
#include <utils/rel.h>
#include "access/tupdesc.h"
#include "utils/rel.h"
#include "storage/bufpage.h"
/* ----------------
/* ----------------
* extern decl's
* extern decl's
...
...
src/include/catalog/catalog.h
View file @
6608278e
...
@@ -6,14 +6,14 @@
...
@@ -6,14 +6,14 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: catalog.h,v 1.
1 1996/08/28 01:56:21
scrappy Exp $
* $Id: catalog.h,v 1.
2 1996/11/05 10:37:14
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef CATALOG_H
#ifndef CATALOG_H
#define CATALOG_H
#define CATALOG_H
#include
"access/tupdesc.h"
#include
<access/tupdesc.h>
extern
char
*
relpath
(
char
relname
[]);
extern
char
*
relpath
(
char
relname
[]);
extern
bool
IsSystemRelationName
(
char
*
relname
);
extern
bool
IsSystemRelationName
(
char
*
relname
);
...
...
src/include/catalog/pg_proc.h
View file @
6608278e
...
@@ -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: pg_proc.h,v 1.
3 1996/11/03 12:12:32
scrappy Exp $
* $Id: pg_proc.h,v 1.
4 1996/11/05 10:37:16
scrappy Exp $
*
*
* NOTES
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
* The script catalog/genbki.sh reads this file and generates .bki
...
@@ -22,14 +22,14 @@
...
@@ -22,14 +22,14 @@
#ifndef PG_PROC_H
#ifndef PG_PROC_H
#define PG_PROC_H
#define PG_PROC_H
#include <tcop/dest.h>
/* ----------------
/* ----------------
* postgres.h contains the system type definintions and the
* postgres.h contains the system type definintions and the
* CATALOG(), BOOTSTRAP and DATA() sugar words so this file
* CATALOG(), BOOTSTRAP and DATA() sugar words so this file
* can be read by both genbki.sh and the C compiler.
* can be read by both genbki.sh and the C compiler.
* ----------------
* ----------------
*/
*/
#include "nodes/pg_list.h"
#include "tcop/dest.h"
/* ----------------
/* ----------------
* pg_proc definition. cpp turns this into
* pg_proc definition. cpp turns this into
...
...
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