diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-31 17:19:54 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-31 17:19:54 +0000 |
| commit | ce7565ab91100747d250ef67d72af5c1b01150d4 (patch) | |
| tree | 968d1af6054a60d13e292d786c2f695da02b2a9d /src/bin/pg_dump/pg_dump.h | |
| parent | 8be3cfbbd5e9afaa77a86251566d3ca04217fcb2 (diff) | |
| download | postgresql-ce7565ab91100747d250ef67d72af5c1b01150d4.tar.gz | |
Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 in
attstattarget to indicate 'use the default'. The default is now a GUC
variable default_statistics_target, and so may be changed on the fly. Along
the way we gain the ability to have pg_dump dump the per-column statistics
target when it's not the default. Patch by Neil Conway, with some kibitzing
from Tom Lane.
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
| -rw-r--r-- | src/bin/pg_dump/pg_dump.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index b3b943dde0..6a6322c9ca 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_dump.h,v 1.92 2002/07/30 21:56:04 tgl Exp $ + * $Id: pg_dump.h,v 1.93 2002/07/31 17:19:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -122,6 +122,7 @@ typedef struct _tableInfo char **attnames; /* the attribute names */ char **atttypnames; /* attribute type names */ int *atttypmod; /* type-specific type modifiers */ + int *attstattarget; /* attribute statistics targets */ /* * Note: we need to store per-attribute notnull and default stuff for * all interesting tables so that we can tell which constraints were |
