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
73235a19
Commit
73235a19
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Improve some comments.
parent
fd89de51
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/nodes/relation.h
+8
-4
8 additions, 4 deletions
src/include/nodes/relation.h
with
8 additions
and
4 deletions
src/include/nodes/relation.h
+
8
−
4
View file @
73235a19
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: relation.h,v 1.
69
2002/11/2
4
2
1
:52:
15
tgl Exp $
* $Id: relation.h,v 1.
70
2002/11/2
7
2
0
:52:
04
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -171,7 +171,7 @@ typedef struct RelOptInfo
...
@@ -171,7 +171,7 @@ typedef struct RelOptInfo
RelOptKind
reloptkind
;
RelOptKind
reloptkind
;
/* all relations included in this RelOptInfo */
/* all relations included in this RelOptInfo */
Relids
relids
;
/* integer list of base relids (
RT
Relids
relids
;
/* integer list of base relids (
rangetable
* indexes) */
* indexes) */
/* size estimates generated by planner */
/* size estimates generated by planner */
...
@@ -304,6 +304,11 @@ typedef struct PathKeyItem
...
@@ -304,6 +304,11 @@ typedef struct PathKeyItem
/*
/*
* Type "Path" is used as-is for sequential-scan paths. For other
* Type "Path" is used as-is for sequential-scan paths. For other
* path types it is the first component of a larger struct.
* path types it is the first component of a larger struct.
*
* Note: "pathtype" is the NodeTag of the Plan node we could build from this
* Path. It is partially redundant with the Path's NodeTag, but allows us
* to use the same Path type for multiple Plan types where there is no need
* to distinguish the Plan type during path processing.
*/
*/
typedef
struct
Path
typedef
struct
Path
...
@@ -319,7 +324,6 @@ typedef struct Path
...
@@ -319,7 +324,6 @@ typedef struct Path
* fetched) */
* fetched) */
NodeTag
pathtype
;
/* tag identifying scan/join method */
NodeTag
pathtype
;
/* tag identifying scan/join method */
/* XXX why is pathtype separate from the NodeTag? */
List
*
pathkeys
;
/* sort ordering of path's output */
List
*
pathkeys
;
/* sort ordering of path's output */
/* pathkeys is a List of Lists of PathKeyItem nodes; see above */
/* pathkeys is a List of Lists of PathKeyItem nodes; see above */
...
@@ -373,7 +377,7 @@ typedef struct IndexPath
...
@@ -373,7 +377,7 @@ typedef struct IndexPath
typedef
struct
TidPath
typedef
struct
TidPath
{
{
Path
path
;
Path
path
;
List
*
tideval
;
List
*
tideval
;
/* qual(s) involving CTID = something */
Relids
unjoined_relids
;
/* some rels not yet part of my Path */
Relids
unjoined_relids
;
/* some rels not yet part of my Path */
}
TidPath
;
}
TidPath
;
...
...
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