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
cd550c76
Commit
cd550c76
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update optimizer readme.
parent
390d5e9f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/optimizer/README
+64
-60
64 additions, 60 deletions
src/backend/optimizer/README
with
64 additions
and
60 deletions
src/backend/optimizer/README
+
64
−
60
View file @
cd550c76
...
...
@@ -3,25 +3,24 @@ Summary
The optimizer generates optimial query plans by doing several steps:
1) Take each relation in a query, and make a RelOptInfo structure for it.
Find each way of accessing the relation, called a Path, including
sequential and index scans, and add it to the RelOptInfo.path_order
list.
1) Take each relation in a query, and make a RelOptInfo structure for
it. Find each way of accessing the relation, called a Path, including
sequential and index scans, and add it to RelOptInfo.pathlist.
2) Join each RelOptInfo to each other RelOptInfo as specified in the
WHERE clause. At this point each RelOptInfo is a single relation, so
you are joining every relation to every relation
it i
s joined
to
in the
WHERE
clause.
you are joining every relation to every relation
a
s joined in the
WHERE
clause.
Joins occur using two RelOptInfos. One is outer, the other inner.
Outers drive lookups of values in the inner. In a nested loop, lookups
of values in the inner occur by scanning to find each matching inner
row. In a mergejoin, inner rows are ordered, and are accessed
in order,
so only one scan of inner is required to perform the entire
join. In a
hashjoin, inner rows are hashed for lookups.
row. In a mergejoin, inner
and outer
rows are ordered, and are accessed
in order,
so only one scan of inner is required to perform the entire
join. In a
hashjoin, inner rows are hashed for lookups.
Each unique join combination becomes a new RelOptInfo. The RelOptInfo
is now the joining of two relations. RelOptInfo.path
_order
are various
is now the joining of two relations. RelOptInfo.path
list
are various
paths to create the joined result, having different orderings depending
on the join method used.
...
...
@@ -30,27 +29,34 @@ a new relation added to each RelOptInfo. This continues until all
relations have been joined into one RelOptInfo, and the cheapest Path is
chosen.
SELECT *
FROM tab1, tab2, tab3, tab4
WHERE tab1.col = tab2.col AND
tab2.col = tab3.col AND
tab3.col = tab4.col
Tables 1, 2, 3, and 4 are joined as:
{1 2},{2 3},{3 4}
{1 2 3},{2 3 4}
{1 2 3 4}
SELECT *
FROM tab1, tab2, tab3, tab4
WHERE tab1.col = tab2.col AND
tab1.col = tab3.col AND
tab1.col = tab4.col
Tables 1, 2, 3, and 4 are joined as:
{1 2},{1 3},{1 4}
{1 2 3},{1 3 4},{1,2,4}
{1 2 3 4}
SELECT *
FROM tab1, tab2, tab3, tab4
WHERE tab1.col = tab2.col AND
tab2.col = tab3.col AND
tab3.col = tab4.col
Tables 1, 2, 3, and 4 are joined as:
{1 2},{2 3},{3 4}
{1 2 3},{2 3 4}
{1 2 3 4}
SELECT *
FROM tab1, tab2, tab3, tab4
WHERE tab1.col = tab2.col AND
tab1.col = tab3.col AND
tab1.col = tab4.col
Tables 1, 2, 3, and 4 are joined as:
{1 2},{1 3},{1 4}
{1 2 3},{1 3 4},{1,2,4}
{1 2 3 4}
In the default left-handed joins, each RelOptInfo adds one
single-relation RelOptInfo in each join pass, and the added RelOptInfo
is always the inner relation in the join. In right-handed joins, the
added RelOptInfo is the outer relation in the join. In bushy plans,
multi-relation RelOptInfo's can be joined to other multi-relation
RelOptInfo's.
Optimizer Functions
-------------------
...
...
@@ -95,28 +101,28 @@ planner()
---subplanner()
make list of relations in target
make list of relations in where clause
split up the qual into restrictions (a=1) and joins (b=c)
find
which
relations can do merge sort and hash joins
----
find_paths
()
find scan and all index paths for each relation not yet joined
one relation, retur
n
find selectivity of columns used in joins
-----
find_join_path
s()
split up the qual into restrictions (a=1) and joins (b=c)
find relation
clause
s can do merge sort and hash joins
----
make_one_rel
()
set_base_rel_pathlist()
find scan and all index paths for each relatio
n
find selectivity of columns used in joins
-----
make_one_rel_by_join
s()
jump to geqo if needed
again:
find
_join
_rel
s():
make_rels_by
_joins():
for each joinrel:
find
_clause_joins()
for each
join on joinrel
:
make_rels_by
_clause_joins()
for each
rel's joininfo list
:
if a join from the join clause adds only one relation, do the join
or
find
_clauseless_joins()
find_all_join_path
s()
generate
paths(
nested,
sort
merge
) for joins found in find_join_rels()
prune_join
rels()
remove from the join list the relation we just added to each
join
prune_rel_paths
()
set cheapest
and perhaps remove unordered path, recompute table sizes
if
we have not done all the tables, go to again:
or
make_rels_by
_clauseless_joins()
update_rels_pathlist_for_join
s()
generate nested,merge
,hash join paths for new rel's created above
merge_rels_with_same_
rel
id
s()
merge RelOptInfo paths that have the same relids because of
join
s
rels_set_cheapest
()
set cheapest
path
if
all relations in one RelOptInfo, return
do group(GROUP)
do aggregate
put back constants
...
...
@@ -129,17 +135,15 @@ planner()
Optimizer Structures
--------------------
RelOptInfo - Every relation
RestrictInfo - restriction clauses
JoinInfo - join combinations
Path - every way to access a relation(sequential, index)
IndexPath - index scans
RelOptInfo - a relation or joined relations
JoinPath - joins
MergePath - merge joins
HashPath - hash joins
RestrictInfo - restriction clauses
JoinInfo - join clauses
PathOrder - every ordering type (sort, merge of relations)
Path - every way to generate a RelOptInfo(sequential,index,joins)
IndexPath - index scans
NestPath - nested joins
MergePath - merge joins
HashPath - hash joins
PathOrder - every ordering type (sort, merge of relations)
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