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
e2114817
Commit
e2114817
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Implement choice between hash-based and sort-based grouping for doing
DISTINCT processing on the output of an IN sub-select.
parent
a4482f4c
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/plan/createplan.c
+28
-8
28 additions, 8 deletions
src/backend/optimizer/plan/createplan.c
src/backend/optimizer/util/pathnode.c
+77
-4
77 additions, 4 deletions
src/backend/optimizer/util/pathnode.c
with
105 additions
and
12 deletions
src/backend/optimizer/plan/createplan.c
+
28
−
8
View file @
e2114817
...
...
@@ -10,12 +10,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.13
2
2003/01/2
0 18:54:52
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.13
3
2003/01/2
2 00:07:00
tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include
"postgres.h"
#include
<limits.h>
#include
"nodes/makefuncs.h"
#include
"nodes/nodeFuncs.h"
...
...
@@ -418,6 +419,7 @@ create_unique_plan(Query *root, UniquePath *best_path)
Plan
*
plan
;
Plan
*
subplan
;
List
*
sub_targetlist
;
List
*
my_tlist
;
List
*
l
;
subplan
=
create_plan
(
root
,
best_path
->
subpath
);
...
...
@@ -474,21 +476,39 @@ create_unique_plan(Query *root, UniquePath *best_path)
subplan
->
targetlist
=
newtlist
;
}
my_tlist
=
new_unsorted_tlist
(
subplan
->
targetlist
);
if
(
best_path
->
use_hash
)
{
elog
(
ERROR
,
"create_unique_plan: hash case not implemented yet"
);
plan
=
NULL
;
int
numGroupCols
=
length
(
my_tlist
);
long
numGroups
;
AttrNumber
*
groupColIdx
;
int
i
;
numGroups
=
(
long
)
Min
(
best_path
->
rows
,
(
double
)
LONG_MAX
);
groupColIdx
=
(
AttrNumber
*
)
palloc
(
numGroupCols
*
sizeof
(
AttrNumber
));
for
(
i
=
0
;
i
<
numGroupCols
;
i
++
)
groupColIdx
[
i
]
=
i
+
1
;
plan
=
(
Plan
*
)
make_agg
(
root
,
my_tlist
,
NIL
,
AGG_HASHED
,
numGroupCols
,
groupColIdx
,
numGroups
,
0
,
subplan
);
}
else
{
List
*
sort_tlist
;
List
*
sortList
;
sort_tlist
=
new_unsorted_tlist
(
subplan
->
targetlist
);
sortList
=
addAllTargetsToSortList
(
NIL
,
sort_tlist
);
plan
=
(
Plan
*
)
make_sort_from_sortclauses
(
root
,
sort_tlist
,
sortList
=
addAllTargetsToSortList
(
NIL
,
my_tlist
);
plan
=
(
Plan
*
)
make_sort_from_sortclauses
(
root
,
my_tlist
,
subplan
,
sortList
);
plan
=
(
Plan
*
)
make_unique
(
sort
_tlist
,
plan
,
sortList
);
plan
=
(
Plan
*
)
make_unique
(
my
_tlist
,
plan
,
sortList
);
}
plan
->
plan_rows
=
best_path
->
rows
;
...
...
This diff is collapsed.
Click to expand it.
src/backend/optimizer/util/pathnode.c
+
77
−
4
View file @
e2114817
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.8
4
2003/01/2
0 18:54:56
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.8
5
2003/01/2
2 00:07:00
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,14 +16,22 @@
#include
<math.h>
#include
"catalog/pg_operator.h"
#include
"executor/executor.h"
#include
"miscadmin.h"
#include
"nodes/plannodes.h"
#include
"optimizer/cost.h"
#include
"optimizer/pathnode.h"
#include
"optimizer/paths.h"
#include
"optimizer/restrictinfo.h"
#include
"parser/parse_expr.h"
#include
"parser/parse_oper.h"
#include
"utils/memutils.h"
#include
"utils/selfuncs.h"
#include
"utils/syscache.h"
static
bool
hash_safe_tlist
(
List
*
tlist
);
/*****************************************************************************
...
...
@@ -506,6 +514,7 @@ create_unique_path(Query *root, RelOptInfo *rel, Path *subpath)
{
UniquePath
*
pathnode
;
Path
sort_path
;
/* dummy for result of cost_sort */
Path
agg_path
;
/* dummy for result of cost_agg */
MemoryContext
oldcontext
;
List
*
sub_targetlist
;
List
*
l
;
...
...
@@ -587,16 +596,80 @@ create_unique_path(Query *root, RelOptInfo *rel, Path *subpath)
*/
sort_path
.
total_cost
+=
cpu_operator_cost
*
rel
->
rows
*
numCols
;
pathnode
->
use_hash
=
false
;
/* for now */
/*
* Is it safe to use a hashed implementation? If so, estimate and
* compare costs. We only try this if we know the targetlist for
* sure (else we can't be sure about the datatypes involved).
*/
pathnode
->
use_hash
=
false
;
if
(
enable_hashagg
&&
sub_targetlist
&&
hash_safe_tlist
(
sub_targetlist
))
{
/*
* Estimate the overhead per hashtable entry at 64 bytes (same
* as in planner.c).
*/
int
hashentrysize
=
rel
->
width
+
64
;
pathnode
->
path
.
startup_cost
=
sort_path
.
startup_cost
;
pathnode
->
path
.
total_cost
=
sort_path
.
total_cost
;
if
(
hashentrysize
*
pathnode
->
rows
<=
SortMem
*
1024L
)
{
cost_agg
(
&
agg_path
,
root
,
AGG_HASHED
,
0
,
numCols
,
pathnode
->
rows
,
subpath
->
startup_cost
,
subpath
->
total_cost
,
rel
->
rows
);
if
(
agg_path
.
total_cost
<
sort_path
.
total_cost
)
pathnode
->
use_hash
=
true
;
}
}
if
(
pathnode
->
use_hash
)
{
pathnode
->
path
.
startup_cost
=
agg_path
.
startup_cost
;
pathnode
->
path
.
total_cost
=
agg_path
.
total_cost
;
}
else
{
pathnode
->
path
.
startup_cost
=
sort_path
.
startup_cost
;
pathnode
->
path
.
total_cost
=
sort_path
.
total_cost
;
}
rel
->
cheapest_unique_path
=
(
Path
*
)
pathnode
;
return
pathnode
;
}
/*
* hash_safe_tlist - can datatypes of given tlist be hashed?
*
* We assume hashed aggregation will work if the datatype's equality operator
* is marked hashjoinable.
*
* XXX this probably should be somewhere else. See also hash_safe_grouping
* in plan/planner.c.
*/
static
bool
hash_safe_tlist
(
List
*
tlist
)
{
List
*
tl
;
foreach
(
tl
,
tlist
)
{
Node
*
expr
=
(
Node
*
)
lfirst
(
tl
);
Operator
optup
;
bool
oprcanhash
;
optup
=
equality_oper
(
exprType
(
expr
),
true
);
if
(
!
optup
)
return
false
;
oprcanhash
=
((
Form_pg_operator
)
GETSTRUCT
(
optup
))
->
oprcanhash
;
ReleaseSysCache
(
optup
);
if
(
!
oprcanhash
)
return
false
;
}
return
true
;
}
/*
* create_subqueryscan_path
* Creates a path corresponding to a sequential scan of a subquery,
...
...
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