Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
8385d557
Commit
8385d557
authored
28 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
-Wall'd ... I missed a subdir under access :(
parent
f47ffc9a
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/backend/access/index/genam.c
+13
-1
13 additions, 1 deletion
src/backend/access/index/genam.c
src/backend/access/index/indexam.c
+14
-1
14 additions, 1 deletion
src/backend/access/index/indexam.c
src/backend/access/index/istrat.c
+6
-1
6 additions, 1 deletion
src/backend/access/index/istrat.c
with
33 additions
and
3 deletions
src/backend/access/index/genam.c
+
13
−
1
View file @
8385d557
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
2
1996/10/2
0
0
9:27:21
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
3
1996/10/2
1
0
7:38:17
scrappy Exp $
*
*
* NOTES
* NOTES
* many of the old access method routines have been turned into
* many of the old access method routines have been turned into
...
@@ -81,6 +81,18 @@
...
@@ -81,6 +81,18 @@
#include
"access/funcindex.h"
#include
"access/funcindex.h"
#include
"access/genam.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
* general access method routines
*
*
...
...
This diff is collapsed.
Click to expand it.
src/backend/access/index/indexam.c
+
14
−
1
View file @
8385d557
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
3
1996/10/2
0
0
9:27:22
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
4
1996/10/2
1
0
7:38:19
scrappy Exp $
*
*
* INTERFACE ROUTINES
* INTERFACE ROUTINES
* index_open - open an index relation by relationId
* index_open - open an index relation by relationId
...
@@ -97,6 +97,19 @@
...
@@ -97,6 +97,19 @@
#include
"utils/relcache.h"
#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
* 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
* get in our way.. delete is defined in c.h and the am's are
...
...
This diff is collapsed.
Click to expand it.
src/backend/access/index/istrat.c
+
6
−
1
View file @
8385d557
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
2
1996/10/2
0
0
9:27:24
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
3
1996/10/2
1
0
7:38:20
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -54,6 +54,11 @@
...
@@ -54,6 +54,11 @@
#include
"utils/memutils.h"
/* could have been access/itup.h */
#include
"utils/memutils.h"
/* could have been access/itup.h */
#include
"access/heapam.h"
#include
"access/heapam.h"
#include
"access/istrat.h"
#include
"fmgr.h"
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* misc strategy support routines
* misc strategy support routines
* ----------------------------------------------------------------
* ----------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment