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
2b5a8bc3
Commit
2b5a8bc3
authored
Oct 20, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More include files cleaned up
parent
3cb7ff8d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
7 deletions
+15
-7
src/include/access/hash.h
src/include/access/hash.h
+7
-1
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+2
-1
src/include/storage/bufmgr.h
src/include/storage/bufmgr.h
+2
-1
src/include/storage/bufpage.h
src/include/storage/bufpage.h
+3
-1
src/include/utils/tqual.h
src/include/utils/tqual.h
+1
-3
No files found.
src/include/access/hash.h
View file @
2b5a8bc3
...
@@ -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.
1 1996/08/27 21:50:12
scrappy Exp $
* $Id: hash.h,v 1.
2 1996/10/20 06:35:01
scrappy Exp $
*
*
* NOTES
* NOTES
* modeled after Margo Seltzer's hash implementation for unix.
* modeled after Margo Seltzer's hash implementation for unix.
...
@@ -16,7 +16,13 @@
...
@@ -16,7 +16,13 @@
#ifndef HASH_H
#ifndef HASH_H
#define HASH_H
#define HASH_H
#include "access/htup.h"
#include "access/itup.h"
#include "access/itup.h"
#include "storage/bufpage.h"
#include "access/sdir.h"
#include "access/funcindex.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/nodes/execnodes.h
View file @
2b5a8bc3
...
@@ -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: execnodes.h,v 1.
2 1996/10/19 06:27:25
scrappy Exp $
* $Id: execnodes.h,v 1.
3 1996/10/20 06:35:07
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include "executor/hashjoin.h"
#include "executor/hashjoin.h"
#include "nodes/primnodes.h"
#include "nodes/primnodes.h"
#include "nodes/memnodes.h"
#include "nodes/memnodes.h"
#include "executor/tuptable.h"
/* ----------------
/* ----------------
* IndexInfo information
* IndexInfo information
...
...
src/include/storage/bufmgr.h
View file @
2b5a8bc3
...
@@ -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: bufmgr.h,v 1.
2 1996/10/19 06:27:14
scrappy Exp $
* $Id: bufmgr.h,v 1.
3 1996/10/20 06:35:20
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
#define BUFMGR_H
#define BUFMGR_H
#include <stdio.h>
#include <stdio.h>
#include "storage/ipc.h"
/*
/*
* the maximum size of a disk block for any possible installation.
* the maximum size of a disk block for any possible installation.
...
...
src/include/storage/bufpage.h
View file @
2b5a8bc3
...
@@ -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: bufpage.h,v 1.
3 1996/10/19 04:03:29
scrappy Exp $
* $Id: bufpage.h,v 1.
4 1996/10/20 06:35:16
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
#include "storage/itemid.h"
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/item.h"
#include "storage/buf.h"
#include "storage/off.h"
/*
/*
* a postgres disk page is an abstraction layered on top of a postgres
* a postgres disk page is an abstraction layered on top of a postgres
...
...
src/include/utils/tqual.h
View file @
2b5a8bc3
...
@@ -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: tqual.h,v 1.
1 1996/08/28 01:59:28
scrappy Exp $
* $Id: tqual.h,v 1.
2 1996/10/20 06:35:27
scrappy Exp $
*
*
* NOTE
* NOTE
* It may be desirable to allow time qualifications to indicate
* It may be desirable to allow time qualifications to indicate
...
@@ -17,9 +17,7 @@
...
@@ -17,9 +17,7 @@
#ifndef TQUAL_H
#ifndef TQUAL_H
#define TQUAL_H
#define TQUAL_H
#include "postgres.h"
#include "utils/nabstime.h"
#include "utils/nabstime.h"
#include "access/htup.h"
typedef
struct
TimeQualSpace
{
typedef
struct
TimeQualSpace
{
char
data
[
12
];
char
data
[
12
];
...
...
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