diff options
| author | Magnus Hagander | 2008-05-28 09:04:06 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2008-05-28 09:04:06 +0000 |
| commit | d88cd7db63c08e2a4ef98fe8422f0a1f278fd841 (patch) | |
| tree | 804f9e380d1cb60395025881e4ed7b538075b38f /src/include | |
| parent | a8f98c068e82e9487d3e884aa35f8f5dc6a8d85c (diff) | |
Add a field to guc enums to allow hiding of values from display while
still accepting them as input, used to allow alternate syntax for the
same setting.
Alex Hunsaker
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/utils/guc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index fc737ec4cf4..2337487d463 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -7,7 +7,7 @@ * Copyright (c) 2000-2008, PostgreSQL Global Development Group * Written by Peter Eisentraut <peter_e@gmx.net>. * - * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.95 2008/05/12 08:35:05 mha Exp $ + * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.96 2008/05/28 09:04:06 mha Exp $ *-------------------------------------------------------------------- */ #ifndef GUC_H @@ -100,6 +100,7 @@ struct config_enum_entry { const char *name; int val; + bool hidden; }; |
