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
e5e12f64
Commit
e5e12f64
authored
Jul 30, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cleanups by "Kurt J. Lidl" <lidl@va.pubnix.com>
parent
519496b6
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
23 additions
and
38 deletions
+23
-38
src/backend/access/sdir.h
src/backend/access/sdir.h
+5
-5
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+7
-7
src/backend/executor/execdefs.h
src/backend/executor/execdefs.h
+1
-8
src/backend/executor/nodeMaterial.c
src/backend/executor/nodeMaterial.c
+2
-2
src/backend/executor/nodeSort.c
src/backend/executor/nodeSort.c
+2
-2
src/backend/storage/buffer/buf_table.c
src/backend/storage/buffer/buf_table.c
+1
-3
src/backend/storage/lmgr/lock.c
src/backend/storage/lmgr/lock.c
+1
-7
src/backend/utils/builtins.h
src/backend/utils/builtins.h
+2
-2
src/bin/psql/rlstubs.c
src/bin/psql/rlstubs.c
+2
-2
No files found.
src/backend/access/sdir.h
View file @
e5e12f64
...
@@ -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: sdir.h,v 1.
1.1.1 1996/07/09 06:21:09
scrappy Exp $
* $Id: sdir.h,v 1.
2 1996/07/30 07:44:57
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -27,7 +27,7 @@ typedef enum ScanDirection {
...
@@ -27,7 +27,7 @@ typedef enum ScanDirection {
/*
/*
* ScanDirectionIsValid --
* ScanDirectionIsValid --
* True iff scan direc
it
on is valid.
* True iff scan direc
ti
on is valid.
*/
*/
#define ScanDirectionIsValid(direction) \
#define ScanDirectionIsValid(direction) \
((bool) (BackwardScanDirection <= direction && \
((bool) (BackwardScanDirection <= direction && \
...
@@ -35,21 +35,21 @@ typedef enum ScanDirection {
...
@@ -35,21 +35,21 @@ typedef enum ScanDirection {
/*
/*
* ScanDirectionIsBackward --
* ScanDirectionIsBackward --
* True iff scan direc
it
on is backward.
* True iff scan direc
ti
on is backward.
*/
*/
#define ScanDirectionIsBackward(direction) \
#define ScanDirectionIsBackward(direction) \
((bool) (direction == BackwardScanDirection))
((bool) (direction == BackwardScanDirection))
/*
/*
* ScanDirectionIsNoMovement --
* ScanDirectionIsNoMovement --
* True iff scan direc
it
on indicates no movement.
* True iff scan direc
ti
on indicates no movement.
*/
*/
#define ScanDirectionIsNoMovement(direction) \
#define ScanDirectionIsNoMovement(direction) \
((bool) (direction == NoMovementScanDirection))
((bool) (direction == NoMovementScanDirection))
/*
/*
* ScanDirectionIsForward --
* ScanDirectionIsForward --
* True iff scan direc
it
on is forward.
* True iff scan direc
ti
on is forward.
*/
*/
#define ScanDirectionIsForward(direction) \
#define ScanDirectionIsForward(direction) \
((bool) (direction == ForwardScanDirection))
((bool) (direction == ForwardScanDirection))
...
...
src/backend/executor/execMain.c
View file @
e5e12f64
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
1.1.1 1996/07/09 06:21:25
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
2 1996/07/30 07:45:27
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -49,7 +49,7 @@ static TupleDesc InitPlan(CmdType operation, Query *parseTree,
...
@@ -49,7 +49,7 @@ static TupleDesc InitPlan(CmdType operation, Query *parseTree,
static
void
EndPlan
(
Plan
*
plan
,
EState
*
estate
);
static
void
EndPlan
(
Plan
*
plan
,
EState
*
estate
);
static
TupleTableSlot
*
ExecutePlan
(
EState
*
estate
,
Plan
*
plan
,
static
TupleTableSlot
*
ExecutePlan
(
EState
*
estate
,
Plan
*
plan
,
Query
*
parseTree
,
CmdType
operation
,
Query
*
parseTree
,
CmdType
operation
,
int
numberTuples
,
int
direction
,
int
numberTuples
,
ScanDirection
direction
,
void
(
*
printfunc
)());
void
(
*
printfunc
)());
static
void
ExecRetrieve
(
TupleTableSlot
*
slot
,
void
(
*
printfunc
)(),
static
void
ExecRetrieve
(
TupleTableSlot
*
slot
,
void
(
*
printfunc
)(),
Relation
intoRelationDesc
);
Relation
intoRelationDesc
);
...
@@ -153,7 +153,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
...
@@ -153,7 +153,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
parseTree
,
parseTree
,
operation
,
operation
,
ALL_TUPLES
,
ALL_TUPLES
,
EXEC_FRWD
,
ForwardScanDirection
,
destination
);
destination
);
break
;
break
;
case
EXEC_FOR
:
case
EXEC_FOR
:
...
@@ -162,7 +162,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
...
@@ -162,7 +162,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
parseTree
,
parseTree
,
operation
,
operation
,
count
,
count
,
EXEC_FRWD
,
ForwardScanDirection
,
destination
);
destination
);
break
;
break
;
...
@@ -176,7 +176,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
...
@@ -176,7 +176,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
parseTree
,
parseTree
,
operation
,
operation
,
count
,
count
,
EXEC_BKWD
,
BackwardScanDirection
,
destination
);
destination
);
break
;
break
;
...
@@ -191,7 +191,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
...
@@ -191,7 +191,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
parseTree
,
parseTree
,
operation
,
operation
,
ONE_TUPLE
,
ONE_TUPLE
,
EXEC_FRWD
,
ForwardScanDirection
,
destination
);
destination
);
break
;
break
;
default:
default:
...
@@ -600,7 +600,7 @@ ExecutePlan(EState *estate,
...
@@ -600,7 +600,7 @@ ExecutePlan(EState *estate,
Query
*
parseTree
,
Query
*
parseTree
,
CmdType
operation
,
CmdType
operation
,
int
numberTuples
,
int
numberTuples
,
int
direction
,
ScanDirection
direction
,
void
(
*
printfunc
)())
void
(
*
printfunc
)())
{
{
Relation
intoRelationDesc
;
Relation
intoRelationDesc
;
...
...
src/backend/executor/execdefs.h
View file @
e5e12f64
...
@@ -6,20 +6,13 @@
...
@@ -6,20 +6,13 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: execdefs.h,v 1.
1.1.1 1996/07/09 06:21:25
scrappy Exp $
* $Id: execdefs.h,v 1.
2 1996/07/30 07:45:29
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef EXECDEFS_H
#ifndef EXECDEFS_H
#define EXECDEFS_H
#define EXECDEFS_H
/* ----------------
* executor scan direction definitions
* ----------------
*/
#define EXEC_FRWD 1
/* Scan forward */
#define EXEC_BKWD -1
/* Scan backward */
/* ----------------
/* ----------------
* ExecutePlan() tuplecount definitions
* ExecutePlan() tuplecount definitions
* ----------------
* ----------------
...
...
src/backend/executor/nodeMaterial.c
View file @
e5e12f64
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.
1.1.1 1996/07/09 06:21:26
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.
2 1996/07/30 07:45:31
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -79,7 +79,7 @@ ExecMaterial(Material *node)
...
@@ -79,7 +79,7 @@ ExecMaterial(Material *node)
* while creating the temporary relation.
* while creating the temporary relation.
* ----------------
* ----------------
*/
*/
estate
->
es_direction
=
EXEC_FRWD
;
estate
->
es_direction
=
ForwardScanDirection
;
/* ----------------
/* ----------------
* if we couldn't create the temp or current relations then
* if we couldn't create the temp or current relations then
...
...
src/backend/executor/nodeSort.c
View file @
e5e12f64
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.
2 1996/07/30 07:45:35
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -138,7 +138,7 @@ ExecSort(Sort *node)
...
@@ -138,7 +138,7 @@ ExecSort(Sort *node)
* while creating the temporary relation.
* while creating the temporary relation.
* ----------------
* ----------------
*/
*/
estate
->
es_direction
=
EXEC_FRWD
;
estate
->
es_direction
=
ForwardScanDirection
;
/* ----------------
/* ----------------
* if we couldn't create the temp or current relations then
* if we couldn't create the temp or current relations then
...
...
src/backend/storage/buffer/buf_table.c
View file @
e5e12f64
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.
1.1.1 1996/07/09 06:21:5
3 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.
2 1996/07/30 07:47:2
3 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -34,8 +34,6 @@
...
@@ -34,8 +34,6 @@
static
HTAB
*
SharedBufHash
;
static
HTAB
*
SharedBufHash
;
extern
HTAB
*
ShmemInitHash
();
typedef
struct
lookup
{
typedef
struct
lookup
{
BufferTag
key
;
BufferTag
key
;
Buffer
id
;
Buffer
id
;
...
...
src/backend/storage/lmgr/lock.c
View file @
e5e12f64
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.
1.1.1 1996/07/09 06:21:56
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.
2 1996/07/30 07:47:33
scrappy Exp $
*
*
* NOTES
* NOTES
* Outside modules can create a lock table and acquire/release
* Outside modules can create a lock table and acquire/release
...
@@ -102,12 +102,6 @@ static MASK BITS_ON[MAX_LOCKTYPES];
...
@@ -102,12 +102,6 @@ static MASK BITS_ON[MAX_LOCKTYPES];
*/
*/
static
bool
LockingIsDisabled
;
static
bool
LockingIsDisabled
;
/* ------------------
* from storage/ipc/shmem.c
* ------------------
*/
extern
HTAB
*
ShmemInitHash
();
/* -------------------
/* -------------------
* map from tableId to the lock table structure
* map from tableId to the lock table structure
* -------------------
* -------------------
...
...
src/backend/utils/builtins.h
View file @
e5e12f64
...
@@ -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: builtins.h,v 1.
1.1.1 1996/07/09 06:22:01
scrappy Exp $
* $Id: builtins.h,v 1.
2 1996/07/30 07:47:42
scrappy Exp $
*
*
* NOTES
* NOTES
* This should normally only be included by fmgr.h.
* This should normally only be included by fmgr.h.
...
@@ -228,7 +228,7 @@ extern POLYGON *rt_poly_inter();
...
@@ -228,7 +228,7 @@ extern POLYGON *rt_poly_inter();
in executor/executor.h*/
in executor/executor.h*/
extern
int32
pqtest
();
extern
int32
pqtest
(
struct
varlena
*
vlena
);
/* arrayfuncs.c */
/* arrayfuncs.c */
#include "utils/array.h"
#include "utils/array.h"
...
...
src/bin/psql/rlstubs.c
View file @
e5e12f64
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.
1.1.1 1996/07/09 06:22:15
scrappy Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.
2 1996/07/30 07:47:58
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,7 +18,7 @@ readline(char *prompt)
...
@@ -18,7 +18,7 @@ readline(char *prompt)
{
{
static
char
buf
[
500
];
static
char
buf
[
500
];
printf
(
"%s"
);
printf
(
"%s"
,
prompt
);
return
fgets
(
buf
,
500
,
stdin
);
return
fgets
(
buf
,
500
,
stdin
);
}
}
...
...
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