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
3cb7ff8d
Commit
3cb7ff8d
authored
Oct 20, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Okay...another directory cleaned out and compilable
parent
5eee45ea
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
21 additions
and
95 deletions
+21
-95
src/backend/access/hash/hash.c
src/backend/access/hash/hash.c
+2
-16
src/backend/access/hash/hashfunc.c
src/backend/access/hash/hashfunc.c
+2
-2
src/backend/access/hash/hashinsert.c
src/backend/access/hash/hashinsert.c
+3
-11
src/backend/access/hash/hashovfl.c
src/backend/access/hash/hashovfl.c
+3
-9
src/backend/access/hash/hashpage.c
src/backend/access/hash/hashpage.c
+3
-9
src/backend/access/hash/hashscan.c
src/backend/access/hash/hashscan.c
+2
-12
src/backend/access/hash/hashsearch.c
src/backend/access/hash/hashsearch.c
+2
-15
src/backend/access/hash/hashstrat.c
src/backend/access/hash/hashstrat.c
+2
-8
src/backend/access/hash/hashutil.c
src/backend/access/hash/hashutil.c
+2
-13
No files found.
src/backend/access/hash/hash.c
View file @
3cb7ff8d
...
...
@@ -7,32 +7,18 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.
2 1996/08/26 06:27:28
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.
3 1996/10/20 06:34:11
scrappy Exp $
*
* NOTES
* This file contains only the public interface routines.
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "postgres.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/sdir.h"
#include "access/hash.h"
#include "access/funcindex.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"
#include "executor/executor.h"
#include "executor/tuptable.h"
#include "catalog/index.h"
bool
BuildingHash
=
false
;
...
...
src/backend/access/hash/hashfunc.c
View file @
3cb7ff8d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.
2 1996/10/20 06:34:14
scrappy Exp $
*
* NOTES
* These functions are stored in pg_amproc. For each operator class
...
...
@@ -15,8 +15,8 @@
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "utils/nabstime.h"
uint32
hashint2
(
int16
key
)
{
...
...
src/backend/access/hash/hashinsert.c
View file @
3cb7ff8d
...
...
@@ -7,24 +7,16 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.
2 1996/10/20 06:34:16
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "postgres.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/hash.h"
static
InsertIndexResult
_hash_insertonpg
(
Relation
rel
,
Buffer
buf
,
int
keysz
,
ScanKey
scankey
,
HashItem
hitem
,
Buffer
metabuf
);
static
OffsetNumber
_hash_pgaddtup
(
Relation
rel
,
Buffer
buf
,
int
keysz
,
ScanKey
itup_scankey
,
Size
itemsize
,
HashItem
hitem
);
...
...
src/backend/access/hash/hashovfl.c
View file @
3cb7ff8d
...
...
@@ -7,25 +7,19 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.
2 1996/10/20 06:34:19
scrappy Exp $
*
* NOTES
* Overflow pages look like ordinary relation pages.
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "
utils/elog
.h"
#include "
postgres
.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/genam.h"
#include "access/hash.h"
static
OverflowPageAddress
_hash_getovfladdr
(
Relation
rel
,
Buffer
*
metabufp
);
static
uint32
_hash_firstfreebit
(
uint32
map
);
...
...
src/backend/access/hash/hashpage.c
View file @
3cb7ff8d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.
2 1996/10/20 06:34:21
scrappy Exp $
*
* NOTES
* Postgres hash pages look like ordinary relation pages. The opaque
...
...
@@ -22,17 +22,11 @@
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "
utils/elog
.h"
#include "
postgres
.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/genam.h"
#include "access/hash.h"
#include "storage/bufmgr.h"
static
void
_hash_setpagelock
(
Relation
rel
,
BlockNumber
blkno
,
int
access
);
static
void
_hash_unsetpagelock
(
Relation
rel
,
BlockNumber
blkno
,
int
access
);
...
...
src/backend/access/hash/hashscan.c
View file @
3cb7ff8d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.
2 1996/10/20 06:34:23
scrappy Exp $
*
* NOTES
* Because we can be doing an index scan on a relation while we
...
...
@@ -26,19 +26,9 @@
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "postgres.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/sdir.h"
#include "access/hash.h"
static
void
_hash_scandel
(
IndexScanDesc
scan
,
BlockNumber
blkno
,
OffsetNumber
offno
);
...
...
src/backend/access/hash/hashsearch.c
View file @
3cb7ff8d
...
...
@@ -7,26 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.
2 1996/10/20 06:34:26
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "postgres.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "fmgr.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/skey.h"
#include "access/sdir.h"
#include "access/hash.h"
/*
...
...
src/backend/access/hash/hashstrat.c
View file @
3cb7ff8d
...
...
@@ -7,19 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.
1.1.1 1996/07/09 06:21:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.
2 1996/10/20 06:34:28
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufpage.h"
#include "
utils/elog
.h"
#include "
postgres
.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/genam.h"
#include "access/hash.h"
/*
...
...
src/backend/access/hash/hashutil.c
View file @
3cb7ff8d
...
...
@@ -7,24 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.
1.1.1 1996/07/09 06:21:1
0 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.
2 1996/10/20 06:34:3
0 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/bufpage.h"
#include "fmgr.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "postgres.h"
#include "utils/rel.h"
#include "utils/excid.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/iqual.h"
#include "access/hash.h"
ScanKey
...
...
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