Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
57fdb2b0
Commit
57fdb2b0
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Update obsolete comment.
parent
72cbc598
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/executor/execTuples.c
+7
-7
7 additions, 7 deletions
src/backend/executor/execTuples.c
with
7 additions
and
7 deletions
src/backend/executor/execTuples.c
+
7
−
7
View file @
57fdb2b0
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.8
5
2005/03/1
6 21:38:07
tgl Exp $
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.8
6
2005/03/1
7 15:25:51
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -51,7 +51,7 @@
* Suppose we have a query such as retrieve (EMP.name) and we have
* a single SeqScan node in the query plan.
*
* At ExecStart()
* At Exec
utor
Start()
* ----------------
* - InitPlan() calls ExecCreateTupleTable() to create the tuple
* table which will hold tuples processed by the executor.
...
...
@@ -61,7 +61,7 @@
* table for the tuples returned by the access methods and the
* tuples resulting from performing target list projections.
*
* During ExecRun()
* During Exec
utor
Run()
* ----------------
* - SeqNext() calls ExecStoreTuple() to place the tuple returned
* by the access methods into the scan tuple slot.
...
...
@@ -69,11 +69,11 @@
* - ExecSeqScan() calls ExecStoreTuple() to take the result
* tuple from ExecProject() and place it into the result tuple slot.
*
* - ExecutePlan() calls Exec
Retrieve
() which
get
s the
tuple out of
* t
he slot passed to it (by direct access to slot->val, which is
*
ugly but not worth changing). this tuple is then returned
.
* - ExecutePlan() calls Exec
Select
()
,
which
passe
s the
result slot
* t
o printtup(), which uses slot_getallattrs() to extract the
*
individual Datums for printing
.
*
* At ExecEnd()
* At Exec
utor
End()
* ----------------
* - EndPlan() calls ExecDropTupleTable() to clean up any remaining
* tuples left over from executing the query.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment