File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.498 2009/04/02 03:51:43 tgl Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.499 2009/04/02 19:57:19 momjian Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -1713,7 +1713,13 @@ static struct config_int ConfigureNamesInt[] =
1713
1713
},
1714
1714
1715
1715
{
1716
- {"effective_io_concurrency" , PGC_USERSET , RESOURCES ,
1716
+ {"effective_io_concurrency" ,
1717
+ #ifdef USE_PREFETCH
1718
+ PGC_USERSET ,
1719
+ #else
1720
+ PGC_INTERNAL ,
1721
+ #endif
1722
+ RESOURCES ,
1717
1723
gettext_noop ("Number of simultaneous requests that can be handled efficiently by the disk subsystem." ),
1718
1724
gettext_noop ("For RAID arrays, this should be approximately the number of drive spindles in the array." )
1719
1725
},
You can’t perform that action at this time.
0 commit comments