diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-17 15:33:33 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-17 15:33:33 +0000 |
commit | b24c02ff2c2a6bebf532c2aa6bf4d78a6528bcfe (patch) | |
tree | 19d905dd22835ca3e41cfe51af163cc763f6e7f7 /src | |
parent | d7a6a04dc75ebf19cc97d65977801a63756582d9 (diff) | |
download | postgresql-b24c02ff2c2a6bebf532c2aa6bf4d78a6528bcfe.tar.gz postgresql-b24c02ff2c2a6bebf532c2aa6bf4d78a6528bcfe.zip |
Bump disable_cost up from 1e8 to 1e10, per gripe from Kris Jurka.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/optimizer/path/costsize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/costsize.c b/src/backend/optimizer/path/costsize.c index 2b3cf61e751..119997f3ff4 100644 --- a/src/backend/optimizer/path/costsize.c +++ b/src/backend/optimizer/path/costsize.c @@ -54,7 +54,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.206 2009/03/26 17:15:35 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.207 2009/04/17 15:33:33 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -97,7 +97,7 @@ double cpu_operator_cost = DEFAULT_CPU_OPERATOR_COST; int effective_cache_size = DEFAULT_EFFECTIVE_CACHE_SIZE; -Cost disable_cost = 100000000.0; +Cost disable_cost = 1.0e10; bool enable_seqscan = true; bool enable_indexscan = true; |