aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/guc_tables.h
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2008-03-16 16:42:44 +0000
committerMagnus Hagander <magnus@hagander.net>2008-03-16 16:42:44 +0000
commita3f66eac011f1b69e22a95cd3e091cf15d3ef56b (patch)
treea790234731f4d288b499032bf3c74609e5041ff8 /src/include/utils/guc_tables.h
parentc9a1cc694abef737548a2aa096c555fa4b253102 (diff)
downloadpostgresql-a3f66eac011f1b69e22a95cd3e091cf15d3ef56b.tar.gz
postgresql-a3f66eac011f1b69e22a95cd3e091cf15d3ef56b.zip
Some cleanups of enum-guc code, per comments from Tom.
Diffstat (limited to 'src/include/utils/guc_tables.h')
-rw-r--r--src/include/utils/guc_tables.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h
index 2b8d8e6e3e3..f81826fe4cf 100644
--- a/src/include/utils/guc_tables.h
+++ b/src/include/utils/guc_tables.h
@@ -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 $
*
*-------------------------------------------------------------------------
*/
@@ -38,15 +38,6 @@ union config_var_value
};
/*
- * 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
*/
enum config_group