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
9188aab7
Commit
9188aab7
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
add pathkeys description.
parent
67fd67f5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/optimizer/path/pathkeys.c
+24
-2
24 additions, 2 deletions
src/backend/optimizer/path/pathkeys.c
src/include/nodes/relation.h
+5
-4
5 additions, 4 deletions
src/include/nodes/relation.h
with
29 additions
and
6 deletions
src/backend/optimizer/path/pathkeys.c
+
24
−
2
View file @
9188aab7
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.
1
1999/02/20 1
5
:2
7:42
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.
2
1999/02/20 1
6
:2
8:20
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -25,7 +25,6 @@
#include
"optimizer/joininfo.h"
#include
"optimizer/ordering.h"
static
int
match_pathkey_joinkeys
(
List
*
pathkey
,
List
*
joinkeys
,
int
outer_or_inner
);
static
bool
joinkeys_pathkeys_match
(
List
*
joinkeys
,
List
*
pathkey
,
...
...
@@ -35,6 +34,29 @@ static List *new_join_pathkey(List *subkeys, List *considered_subkeys,
static
List
*
new_matching_subkeys
(
Var
*
subkey
,
List
*
considered_subkeys
,
List
*
join_rel_tlist
,
List
*
joinclauses
);
/*
* Explanation of Path.pathkeys
*
* This structure is a List of List of Var nodes that represent the sort
* order of the result generated by the Path.
*
* In single/base relation RelOptInfo's, the Path's represent various ways
* of generate the relation. Sequential scan Paths have a NIL pathkeys.
* Index scans have Path.pathkeys that represent the chosen index. A
* single-key index pathkeys would be { {tab1_indexkey1} }. The pathkeys
* entry for a multi-key index would be { {tab1_indexkey1}, {tab1_indexkey2} }.
*
* Multi-relation RelOptInfo Path's are more complicated. Mergejoins are
* only performed with equajoins("="). Because of this, the multi-relation
* path actually has more than one ordering. For example, a mergejoin Path
* of "tab1.col1 = tab2.col1" would generate a pathkeys of
* { {tab1.col1, tab2.col1} }. This allows future joins to use either Var
* as a pre-sorted key to prevent Mergejoins from having to re-sort the Path.
* They are equal, so they are both primary sort keys. This is why pathkeys
* is a List of Lists.
*/
/****************************************************************************
* KEY COMPARISONS
****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
src/include/nodes/relation.h
+
5
−
4
View file @
9188aab7
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: relation.h,v 1.2
6
1999/02/
18 00:49:38
momjian Exp $
* $Id: relation.h,v 1.2
7
1999/02/
20 16:28:20
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -142,9 +142,10 @@ typedef struct Path
PathOrder
*
pathorder
;
List
*
pathkeys
;
/* This is a List of List of Var nodes.
* It is a List of Lists because of multi-key
* indexes.
List
*
pathkeys
;
/*
* This is a List of List of Var nodes.
* See the top of optimizer/path/pathkeys.c
* for more information.
*/
Cost
outerjoincost
;
Relids
joinid
;
...
...
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