mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Some cleanups of enum-guc code, per comments from Tom.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.39 2008/03/10 12:55:13 mha Exp $
|
||||
* $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.40 2008/03/16 16:42:44 mha Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -37,15 +37,6 @@ union config_var_value
|
||||
int enumval;
|
||||
};
|
||||
|
||||
/*
|
||||
* Enum values are made up of an array of name-value pairs
|
||||
*/
|
||||
struct config_enum_entry
|
||||
{
|
||||
const char *name;
|
||||
int val;
|
||||
};
|
||||
|
||||
/*
|
||||
* Groupings to help organize all the run-time options for display
|
||||
*/
|
||||
|
Reference in New Issue
Block a user