We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf14789 commit b21005fCopy full SHA for b21005f
src/backend/optimizer/geqo/geqo_params.c
@@ -5,7 +5,7 @@
5
*
6
* Copyright (c) 1994, Regents of the University of California
7
8
-* $Id: geqo_params.c,v 1.15 1999/05/17 00:25:33 tgl Exp $
+* $Id: geqo_params.c,v 1.16 1999/05/22 19:29:01 tgl Exp $
9
10
*-------------------------------------------------------------------------
11
*/
@@ -168,6 +168,9 @@ geqo_params(int string_length)
168
effort = MEDIUM_EFFORT;
169
else if (strcmp(buf, HIGH) == 0)
170
effort = HIGH_EFFORT;
171
+ /* undocumented extension: specify effort numerically */
172
+ else if (isdigit(buf[0]))
173
+ effort = atoi(buf);
174
}
175
176
0 commit comments