Commit 5d6758fd authored by Tom Lane's avatar Tom Lane

Increase WIDTH_THRESHOLD from 256 to 1K. This addresses recent observation

that ANALYZE would not gather any stats for a CHAR(255) column.  I still
think a width threshold is appropriate for the reasons mentioned in the
code, but we can loosen it at least.
parent 5cabcfcc
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.44 2002/08/26 17:53:57 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.45 2002/08/26 18:45:57 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -56,7 +56,7 @@ typedef enum ...@@ -56,7 +56,7 @@ typedef enum
* ignoring wide values will not affect our estimates of histogram bin * ignoring wide values will not affect our estimates of histogram bin
* boundaries very much. * boundaries very much.
*/ */
#define WIDTH_THRESHOLD 256 #define WIDTH_THRESHOLD 1024
/* /*
* We build one of these structs for each attribute (column) that is to be * We build one of these structs for each attribute (column) that is to be
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment