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
4fa90e38
Commit
4fa90e38
authored
Nov 05, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cleanups
parent
466f5fd7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
52 deletions
+28
-52
src/backend/access/index/Makefile
src/backend/access/index/Makefile
+3
-2
src/backend/access/index/genam.c
src/backend/access/index/genam.c
+6
-14
src/backend/access/index/indexam.c
src/backend/access/index/indexam.c
+7
-13
src/backend/access/index/istrat.c
src/backend/access/index/istrat.c
+12
-23
No files found.
src/backend/access/index/Makefile
View file @
4fa90e38
...
...
@@ -4,14 +4,15 @@
# Makefile for access/index
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.
2 1996/10/31 08:32:20
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.
3 1996/11/05 10:02:01
scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/access/index/genam.c
View file @
4fa90e38
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
5 1996/11/03 12:35
:02 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.
6 1996/11/05 10:02
:02 scrappy Exp $
*
* NOTES
* many of the old access method routines have been turned into
...
...
@@ -44,26 +44,18 @@
* ----------------------------------------------------------------
*/
#include
"postgres.h"
#include
<postgres.h>
#include "access/relscan.h"
#include "access/itup.h"
#include "access/sdir.h"
#include "utils/catcache.h"
#include "access/genam.h"
#include "utils/palloc.h"
#include <utils/catcache.h>
#include <access/genam.h>
#include <storage/bufmgr.h>
#ifndef HAVE_MEMMOVE
# include
"regex/utils.h"
# include
<regex/utils.h>
#else
# include <string.h>
#endif
#include "storage/bufmgr.h"
/* ----------------------------------------------------------------
* general access method routines
*
...
...
src/backend/access/index/indexam.c
View file @
4fa90e38
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
6 1996/11/03 22:57:36
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.
7 1996/11/05 10:02:03
scrappy Exp $
*
* INTERFACE ROUTINES
* index_open - open an index relation by relationId
...
...
@@ -63,19 +63,13 @@
*-------------------------------------------------------------------------
*/
#include
"postgres.h"
#include
<postgres.h>
#include "access/genam.h"
#include "utils/relcache.h"
#include "fmgr.h"
#include "utils/palloc.h"
#include "storage/lmgr.h"
#include "access/heaptuple.h"
#include <access/genam.h>
#include <utils/relcache.h>
#include <fmgr.h>
#include <storage/lmgr.h>
#include <access/heaptuple.h>
/* ----------------
* undefine macros we aren't going to use that would otherwise
...
...
src/backend/access/index/istrat.c
View file @
4fa90e38
...
...
@@ -8,34 +8,23 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
6 1996/11/03 22:57:40
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.
7 1996/11/05 10:02:06
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include
"postgres.h"
#include
<postgres.h>
#include "access/relscan.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_operator.h"
#include "catalog/catname.h"
#include "catalog/pg_index.h"
#include "catalog/pg_amop.h"
#include "catalog/pg_amproc.h"
#include "utils/memutils.h"
/* could have been access/itup.h */
#include "access/heapam.h"
#include "access/istrat.h"
#include "fmgr.h"
#include <catalog/pg_proc.h>
#include <catalog/pg_operator.h>
#include <catalog/catname.h>
#include <catalog/pg_index.h>
#include <catalog/pg_amop.h>
#include <catalog/pg_amproc.h>
#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