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
75cccd0a
Commit
75cccd0a
authored
Feb 20, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pathkeys fixes
parent
0ff27333
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
24 deletions
+55
-24
src/backend/nodes/print.c
src/backend/nodes/print.c
+15
-7
src/backend/optimizer/path/pathkeys.c
src/backend/optimizer/path/pathkeys.c
+36
-12
src/backend/optimizer/util/pathnode.c
src/backend/optimizer/util/pathnode.c
+2
-2
src/include/nodes/relation.h
src/include/nodes/relation.h
+2
-3
No files found.
src/backend/nodes/print.c
View file @
75cccd0a
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.2
2 1999/02/13 23:16:0
0 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.2
3 1999/02/20 19:02:4
0 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -213,20 +213,28 @@ print_expr(Node *expr, List *rtable)
/*
* print_pathkeys -
*
temporary here. where is keys list of list
s
*
pathkeys list of list of Var'
s
*/
void
print_pathkeys
(
List
*
pathkeys
,
List
*
rtable
)
{
List
*
k
;
List
*
i
,
*
k
;
printf
(
"("
);
foreach
(
k
,
pathkeys
)
foreach
(
i
,
pathkeys
)
{
Node
*
var
=
lfirst
((
List
*
)
lfirst
(
k
));
List
pathkey
=
lfirst
(
i
));
print_expr
(
var
,
rtable
);
if
(
lnext
(
k
))
printf
(
"("
);
foreach
(
k
,
pathkey
)
{
Node
*
var
=
lfirst
(
k
);
print_expr
(
var
,
rtable
);
if
(
lnext
(
k
))
printf
(
", "
);
}
printf
(
") "
);
if
(
lnext
(
i
))
printf
(
", "
);
}
printf
(
")
\n
"
);
...
...
src/backend/optimizer/path/pathkeys.c
View file @
75cccd0a
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.
4 1999/02/20 18:01:0
1 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.
5 1999/02/20 19:02:4
1 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -54,7 +54,19 @@ static List *new_matching_subkeys(Var *subkey, List *considered_subkeys,
* { {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. -- bjm
* is a List of Lists.
*
* For multi-key sorts, if the outer is sorted by a multi-key index, the
* multi-key index remains after the join. If the inner has a multi-key
* sort, only the primary key of the inner is added to the result.
* Mergejoins only join on the primary key. Currently, non-primary keys
* in the pathkeys List are of limited value.
*
* HashJoin has similar functionality. NestJoin does not perform sorting,
* and allows non-equajoins, so it does not allow useful pathkeys.
*
* -- bjm
*
*/
/****************************************************************************
...
...
@@ -92,10 +104,10 @@ static List *new_matching_subkeys(Var *subkey, List *considered_subkeys,
*/
List
*
order_joinkeys_by_pathkeys
(
List
*
pathkeys
,
List
*
joinkeys
,
List
*
joinclauses
,
int
outer_or_inner
,
List
**
matchedJoinClausesPtr
)
List
*
joinkeys
,
List
*
joinclauses
,
int
outer_or_inner
,
List
**
matchedJoinClausesPtr
)
{
List
*
matched_joinkeys
=
NIL
;
List
*
matched_joinclauses
=
NIL
;
...
...
@@ -103,6 +115,10 @@ order_joinkeys_by_pathkeys(List *pathkeys,
List
*
i
=
NIL
;
int
matched_joinkey_index
=
-
1
;
/*
* Reorder the joinkeys by picking out one that matches each pathkey,
* and create a new joinkey/joinclause list in pathkey order
*/
foreach
(
i
,
pathkeys
)
{
pathkey
=
lfirst
(
i
);
...
...
@@ -118,10 +134,18 @@ order_joinkeys_by_pathkeys(List *pathkeys,
matched_joinclauses
=
lappend
(
matched_joinclauses
,
joinclause
);
}
else
{
/* A pathkey could not be matched. */
break
;
}
/*
* Did we fail to match all the joinkeys?
* Extra pathkeys are no problem.
*/
if
(
length
(
joinkeys
)
!=
length
(
matched_joinkeys
))
{
*
matchedJoinClausesPtr
=
NIL
;
return
NIL
;
}
}
*
matchedJoinClausesPtr
=
matched_joinclauses
;
...
...
@@ -133,6 +157,8 @@ order_joinkeys_by_pathkeys(List *pathkeys,
* match_pathkey_joinkeys
* Returns the 0-based index into 'joinkeys' of the first joinkey whose
* outer or inner subkey matches any subkey of 'pathkey'.
*
* All these keys are equivalent, so any of them can match. See above.
*/
static
int
match_pathkey_joinkeys
(
List
*
pathkey
,
...
...
@@ -141,8 +167,7 @@ match_pathkey_joinkeys(List *pathkey,
{
Var
*
path_subkey
;
int
pos
;
List
*
i
=
NIL
;
List
*
x
=
NIL
;
List
*
i
,
*
x
;
JoinKey
*
jk
;
foreach
(
i
,
pathkey
)
...
...
@@ -152,8 +177,7 @@ match_pathkey_joinkeys(List *pathkey,
foreach
(
x
,
joinkeys
)
{
jk
=
(
JoinKey
*
)
lfirst
(
x
);
if
(
var_equal
(
path_subkey
,
extract_join_key
(
jk
,
outer_or_inner
)))
if
(
var_equal
(
path_subkey
,
extract_join_key
(
jk
,
outer_or_inner
)))
return
pos
;
pos
++
;
}
...
...
src/backend/optimizer/util/pathnode.c
View file @
75cccd0a
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.3
8 1999/02/20 18:01:0
2 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.3
9 1999/02/20 19:02:4
2 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -205,7 +205,7 @@ better_path(Path *new_path, List *unique_paths, bool *is_new)
{
/*
* Replace pathkeys that match exactly, {{1,2}}, {{1,2}}
* Replace pathkeys {{1,2}}with {{1,2,3}}} if the latter is not
* Replace pathkeys {{1,2}}
with {{1,2,3}}} if the latter is not
* more expensive and replace unordered path with ordered
* path if it is not more expensive. Favor sorted keys
* over unsorted keys in the same way.
...
...
src/include/nodes/relation.h
View file @
75cccd0a
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: relation.h,v 1.2
7 1999/02/20 16:28:20
momjian Exp $
* $Id: relation.h,v 1.2
8 1999/02/20 19:02:43
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -142,8 +142,7 @@ typedef struct Path
PathOrder
*
pathorder
;
List
*
pathkeys
;
/*
* This is a List of List of Var nodes.
List
*
pathkeys
;
/* This is a List of List of Var nodes.
* See the top of optimizer/path/pathkeys.c
* for more information.
*/
...
...
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