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
8385d557
Commit
8385d557
authored
Oct 21, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-Wall'd ... I missed a subdir under access :(
parent
f47ffc9a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
3 deletions
+33
-3
src/backend/access/index/genam.c
src/backend/access/index/genam.c
+13
-1
src/backend/access/index/indexam.c
src/backend/access/index/indexam.c
+14
-1
src/backend/access/index/istrat.c
src/backend/access/index/istrat.c
+6
-1
No files found.
src/backend/access/index/genam.c
View file @
8385d557
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
2 1996/10/20 09:27:21
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
3 1996/10/21 07:38:17
scrappy Exp $
*
* NOTES
* many of the old access method routines have been turned into
...
...
@@ -81,6 +81,18 @@
#include "access/funcindex.h"
#include "access/genam.h"
#include "utils/palloc.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
#include <stdio.h>
#include "storage/ipc.h"
#include "storage/bufmgr.h"
/* ----------------------------------------------------------------
* general access method routines
*
...
...
src/backend/access/index/indexam.c
View file @
8385d557
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
3 1996/10/20 09:27:22
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
4 1996/10/21 07:38:19
scrappy Exp $
*
* INTERFACE ROUTINES
* index_open - open an index relation by relationId
...
...
@@ -97,6 +97,19 @@
#include "utils/relcache.h"
#include "fmgr.h"
#include "utils/palloc.h"
#include "storage/ipc.h"
#include "storage/spin.h"
#include "utils/hsearch.h"
#include "storage/shmem.h"
#include "storage/lock.h"
#include "storage/lmgr.h"
#include "access/heaptuple.h"
/* ----------------
* undefine macros we aren't going to use that would otherwise
* get in our way.. delete is defined in c.h and the am's are
...
...
src/backend/access/index/istrat.c
View file @
8385d557
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
2 1996/10/20 09:27:24
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
3 1996/10/21 07:38:20
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -54,6 +54,11 @@
#include "utils/memutils.h"
/* could have been access/itup.h */
#include "access/heapam.h"
#include "access/istrat.h"
#include "fmgr.h"
/* ----------------------------------------------------------------
* misc strategy support routines
* ----------------------------------------------------------------
...
...
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