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
21deb428
Commit
21deb428
authored
24 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Clarify meaning of GEQO_THRESHOLD parameter.
parent
52cacf46
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/runtime.sgml
+6
-5
6 additions, 5 deletions
doc/src/sgml/runtime.sgml
with
6 additions
and
5 deletions
doc/src/sgml/runtime.sgml
+
6
−
5
View file @
21deb428
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.5
0
2001/02/1
0
0
0:50:18 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.5
1
2001/02/1
5
0
4:28:50 tgl
Exp $
-->
-->
<Chapter Id="runtime">
<Chapter Id="runtime">
...
@@ -639,7 +639,7 @@ env PGOPTIONS='-c geqo=off' psql
...
@@ -639,7 +639,7 @@ env PGOPTIONS='-c geqo=off' psql
algorithm: The pool size is the number of individuals in one
algorithm: The pool size is the number of individuals in one
population. Valid values are between 128 and 1024. If it is
population. Valid values are between 128 and 1024. If it is
set to 0 (the default) a pool size of 2^(QS+1), where QS
set to 0 (the default) a pool size of 2^(QS+1), where QS
is the number of
relation
s in the query, is taken. The effort
is the number of
FROM item
s in the query, is taken. The effort
is used to calculate a default for generations. Valid values
is used to calculate a default for generations. Valid values
are between 1 and 80, 40 being the default. Generations
are between 1 and 80, 40 being the default. Generations
specifies the number of iterations in the algorithm. The
specifies the number of iterations in the algorithm. The
...
@@ -659,9 +659,10 @@ env PGOPTIONS='-c geqo=off' psql
...
@@ -659,9 +659,10 @@ env PGOPTIONS='-c geqo=off' psql
<term>GEQO_THRESHOLD (<type>integer</type>)</term>
<term>GEQO_THRESHOLD (<type>integer</type>)</term>
<listitem>
<listitem>
<para>
<para>
Only use genetic query optimization for queries with at least
Use genetic query optimization to plan queries with at least
this many relations involved. The default is 11. For less
this many FROM items involved. (Note that a JOIN construct
relations it is probably more efficient to use the
counts as only one FROM item.) The default is 11. For simpler
queries it is usually best to use the
deterministic, exhaustive planner.
deterministic, exhaustive planner.
</para>
</para>
</listitem>
</listitem>
...
...
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