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
25cccc05
Commit
25cccc05
authored
Feb 23, 1999
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments.
parent
6d73a8c0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
src/backend/executor/execQual.c
src/backend/executor/execQual.c
+3
-3
src/include/executor/tuptable.h
src/include/executor/tuptable.h
+8
-10
No files found.
src/backend/executor/execQual.c
View file @
25cccc05
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.4
5 1999/02/22 19:40:09 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.4
6 1999/02/23 07:33:44 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1454,7 +1454,7 @@ ExecTargetList(List *targetlist,
EV_printf
(
"
\n
"
);
/*
* Return a dummy tuple if the targetlist is empty
.
* Return a dummy tuple if the targetlist is empty.
* the dummy tuple is necessary to differentiate
* between passing and failing the qualification.
*/
...
...
@@ -1462,7 +1462,7 @@ ExecTargetList(List *targetlist,
{
/*
* I now think that the only time this makes
* any sen
c
e is when we run a delete query. Then
* any sen
s
e is when we run a delete query. Then
* we need to return something other than nil
* so we know to delete the tuple associated
* with the saved tupleid.. see what ExecutePlan
...
...
src/include/executor/tuptable.h
View file @
25cccc05
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: tuptable.h,v 1.1
0 1999/02/13 23:21:29 momjian
Exp $
* $Id: tuptable.h,v 1.1
1 1999/02/23 07:36:31 thomas
Exp $
*
* NOTES
* The tuple table interface is getting pretty ugly.
...
...
@@ -22,8 +22,8 @@
#include <access/htup.h>
/* ----------------
*
Note: t
he executor tuple table is managed and manipulated by special
* code
and macros
in executor/execTuples.c and tupTable.h
*
T
he executor tuple table is managed and manipulated by special
* code in executor/execTuples.c and tupTable.h
*
* TupleTableSlot information
*
...
...
@@ -42,6 +42,11 @@
* "retrieve (EMP.hobbies.all)", a single scan may return tuples
* of many types, so now we return pointers to tuple descriptors
* along with tuples returned via the tuple table. -cim 1/18/90
*
* Tuple table macros are all excised from the system now.
* See executor.h for decls of functions defined in execTuples.c
* -jolly
*
* ----------------
*/
typedef
struct
TupleTableSlot
...
...
@@ -68,11 +73,4 @@ typedef struct TupleTableData
typedef
TupleTableData
*
TupleTable
;
/*
tuple table macros are all excised from the system now
see executor.h for decls of functions defined in execTuples.c
- jolly
*/
#endif
/* TUPTABLE_H */
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