aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorJoe Conway <mail@joeconway.com>2003-12-03 18:52:00 +0000
committerJoe Conway <mail@joeconway.com>2003-12-03 18:52:00 +0000
commit66989aa2d6de4ccb469750fe661e525404cf5990 (patch)
treeaafadceaa7ba4500747d5c1063ffa122b20470a3 /src/include
parent7f8f7665fca489e171d9cce7e8c36a034c3da086 (diff)
downloadpostgresql-66989aa2d6de4ccb469750fe661e525404cf5990.tar.gz
postgresql-66989aa2d6de4ccb469750fe661e525404cf5990.zip
Added new group of read-only GUC variables to allow simple access
to certain compile-time options (FUNC_MAX_ARGS, INDEX_MAX_KEYS, NAMEDATALEN, BLCKSZ, HAVE_INT64_TIMESTAMP). Also added "category", "short_desc", and "extra_desc" to the pg_settings view. Per recent discussion here: http://archives.postgresql.org/pgsql-patches/2003-11/msg00363.php
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/guc_tables.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h
index e0fad72b68f..c596e964eba 100644
--- a/src/include/utils/guc_tables.h
+++ b/src/include/utils/guc_tables.h
@@ -7,7 +7,7 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.7 2003/11/29 22:41:15 pgsql Exp $
+ * $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.8 2003/12/03 18:52:00 joe Exp $
*
*-------------------------------------------------------------------------
*/
@@ -50,7 +50,8 @@ enum config_group
COMPAT_OPTIONS,
COMPAT_OPTIONS_PREVIOUS,
COMPAT_OPTIONS_CLIENT,
- DEVELOPER_OPTIONS
+ DEVELOPER_OPTIONS,
+ COMPILE_OPTIONS
};
/*