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
57fdb2b0
Commit
57fdb2b0
authored
Mar 17, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update obsolete comment.
parent
72cbc598
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/backend/executor/execTuples.c
src/backend/executor/execTuples.c
+7
-7
No files found.
src/backend/executor/execTuples.c
View file @
57fdb2b0
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.8
5 2005/03/16 21:38:07
tgl Exp $
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.8
6 2005/03/17 15:25:51
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
* Suppose we have a query such as retrieve (EMP.name) and we have
* Suppose we have a query such as retrieve (EMP.name) and we have
* a single SeqScan node in the query plan.
* a single SeqScan node in the query plan.
*
*
* At ExecStart()
* At Exec
utor
Start()
* ----------------
* ----------------
* - InitPlan() calls ExecCreateTupleTable() to create the tuple
* - InitPlan() calls ExecCreateTupleTable() to create the tuple
* table which will hold tuples processed by the executor.
* table which will hold tuples processed by the executor.
...
@@ -61,7 +61,7 @@
...
@@ -61,7 +61,7 @@
* table for the tuples returned by the access methods and the
* table for the tuples returned by the access methods and the
* tuples resulting from performing target list projections.
* tuples resulting from performing target list projections.
*
*
* During ExecRun()
* During Exec
utor
Run()
* ----------------
* ----------------
* - SeqNext() calls ExecStoreTuple() to place the tuple returned
* - SeqNext() calls ExecStoreTuple() to place the tuple returned
* by the access methods into the scan tuple slot.
* by the access methods into the scan tuple slot.
...
@@ -69,11 +69,11 @@
...
@@ -69,11 +69,11 @@
* - ExecSeqScan() calls ExecStoreTuple() to take the result
* - ExecSeqScan() calls ExecStoreTuple() to take the result
* tuple from ExecProject() and place it into the result tuple slot.
* tuple from ExecProject() and place it into the result tuple slot.
*
*
* - ExecutePlan() calls Exec
Retrieve() which gets the tuple out of
* - ExecutePlan() calls Exec
Select(), which passes the result slot
* t
he slot passed to it (by direct access to slot->val, which is
* t
o printtup(), which uses slot_getallattrs() to extract the
*
ugly but not worth changing). this tuple is then returned
.
*
individual Datums for printing
.
*
*
* At ExecEnd()
* At Exec
utor
End()
* ----------------
* ----------------
* - EndPlan() calls ExecDropTupleTable() to clean up any remaining
* - EndPlan() calls ExecDropTupleTable() to clean up any remaining
* tuples left over from executing the query.
* tuples left over from executing the query.
...
...
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