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
87b48ff0
Commit
87b48ff0
authored
Oct 26, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
D'Arcy's cleanups
parent
716d506a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
12 deletions
+19
-12
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+2
-1
src/backend/executor/execQual.c
src/backend/executor/execQual.c
+4
-4
src/backend/executor/functions.c
src/backend/executor/functions.c
+3
-2
src/backend/executor/nodeAppend.c
src/backend/executor/nodeAppend.c
+2
-2
src/backend/executor/nodeHash.c
src/backend/executor/nodeHash.c
+4
-2
src/include/storage/bufmgr.h
src/include/storage/bufmgr.h
+4
-1
No files found.
src/backend/executor/execMain.c
View file @
87b48ff0
...
...
@@ -26,7 +26,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
5 1996/10/23 07:40:26
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
6 1996/10/26 04:13:05
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -37,6 +37,7 @@
#include "utils/acl.h"
#include "parser/parsetree.h"
/* rt_fetch() */
#include "storage/bufmgr.h"
#include "storage/lmgr.h"
#include "commands/async.h"
/* #include "access/localam.h" */
#include "optimizer/var.h"
...
...
src/backend/executor/execQual.c
View file @
87b48ff0
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.
6 1996/10/10 00:18:52 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.
7 1996/10/26 04:13:11 scrappy
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -918,7 +918,7 @@ ExecEvalOr(Expr *orExpr, ExprContext *econtext, bool *isNull)
List
*
clause
;
bool
isDone
;
bool
IsNull
;
Datum
const_value
;
Datum
const_value
=
0
;
IsNull
=
false
;
clauses
=
orExpr
->
args
;
...
...
@@ -979,7 +979,7 @@ ExecEvalAnd(Expr *andExpr, ExprContext *econtext, bool *isNull)
{
List
*
clauses
;
List
*
clause
;
Datum
const_value
;
Datum
const_value
=
0
;
bool
isDone
;
bool
IsNull
;
...
...
@@ -1056,7 +1056,7 @@ ExecEvalExpr(Node *expression,
bool
*
isNull
,
bool
*
isDone
)
{
Datum
retDatum
;
Datum
retDatum
=
0
;
*
isNull
=
false
;
...
...
src/backend/executor/functions.c
View file @
87b48ff0
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/functions.c,v 1.
2 1996/09/16 05:36:15
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/functions.c,v 1.
3 1996/10/26 04:13:20
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -23,6 +23,7 @@
#include "parser/parse_query.h"
#include "tcop/pquery.h"
#include "tcop/tcopprot.h"
#include "tcop/utility.h"
#include "nodes/params.h"
#include "fmgr.h"
#include "utils/fcache.h"
...
...
@@ -352,7 +353,7 @@ Datum
postquel_function
(
Func
*
funcNode
,
char
**
args
,
bool
*
isNull
,
bool
*
isDone
)
{
execution_state
*
es
;
Datum
result
;
Datum
result
=
0
;
FunctionCachePtr
fcache
=
funcNode
->
func_fcache
;
es
=
(
execution_state
*
)
fcache
->
func_state
;
...
...
src/backend/executor/nodeAppend.c
View file @
87b48ff0
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.
1.1.1 1996/07/09 06:21
:26 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.
2 1996/10/26 04:13
:26 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -171,7 +171,7 @@ ExecInitAppend(Append *node, EState *estate, Plan *parent)
{
AppendState
*
unionstate
;
int
nplans
;
List
*
resultList
;
List
*
resultList
=
NULL
;
List
*
rtentries
;
List
*
unionplans
;
bool
*
initialized
;
...
...
src/backend/executor/nodeHash.c
View file @
87b48ff0
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.
4 1996/08/19 01:52:36
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.
5 1996/10/26 04:13:31
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,6 +22,7 @@
#include <stdio.h>
/* for sprintf() */
#include <math.h>
#include <sys/file.h>
#include "storage/fd.h"
/* for SEEK_ */
#include "storage/ipc.h"
#include "storage/bufmgr.h"
/* for BLCKSZ */
...
...
@@ -29,6 +30,7 @@
#include "executor/nodeHash.h"
#include "executor/nodeHashjoin.h"
#include "utils/palloc.h"
#include "utils/hsearch.h"
extern
int
NBuffers
;
static
int
HashTBSize
;
...
...
@@ -55,7 +57,7 @@ ExecHash(Hash *node)
ExprContext
*
econtext
;
int
nbatch
;
File
*
batches
;
File
*
batches
=
NULL
;
RelativeAddr
*
batchPos
;
int
*
batchSizes
;
int
i
;
...
...
src/include/storage/bufmgr.h
View file @
87b48ff0
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: bufmgr.h,v 1.
3 1996/10/20 06:35:20
scrappy Exp $
* $Id: bufmgr.h,v 1.
4 1996/10/26 04:15:05
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -14,7 +14,10 @@
#define BUFMGR_H
#include <stdio.h>
#include "storage/ipc.h"
#include "storage/buf.h"
#include "utils/rel.h"
/*
* the maximum size of a disk block for any possible installation.
...
...
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