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
21deb428
Commit
21deb428
authored
Feb 15, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify meaning of GEQO_THRESHOLD parameter.
parent
52cacf46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+6
-5
No files found.
doc/src/sgml/runtime.sgml
View file @
21deb428
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.5
0 2001/02/10 00:50:18 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.5
1 2001/02/15 04: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>
...
...
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