~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/include/utils/guc_tables.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *
8
8
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
9
9
 *
10
 
 *        $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.45 2009/01/01 17:24:02 momjian Exp $
 
10
 *        $PostgreSQL: pgsql/src/include/utils/guc_tables.h,v 1.46 2009/06/11 14:49:13 momjian Exp $
11
11
 *
12
12
 *-------------------------------------------------------------------------
13
13
 */
125
125
        GucSource       reset_source;   /* source of the reset_value */
126
126
        GucSource       source;                 /* source of the current actual value */
127
127
        GucStack   *stack;                      /* stacked prior values */
128
 
        char       *sourcefile;         /* file this settings is from (NULL if not file) */
 
128
        char       *sourcefile;         /* file this settings is from (NULL if not
 
129
                                                                 * file) */
129
130
        int                     sourceline;             /* line in source file */
130
131
};
131
132
 
218
219
extern void build_guc_variables(void);
219
220
 
220
221
/* search in enum options */
221
 
extern const char *config_enum_lookup_by_value(struct config_enum *record, int val);
222
 
extern bool config_enum_lookup_by_name(struct config_enum *record,
223
 
                                                                          const char *value, int *retval);
 
222
extern const char *config_enum_lookup_by_value(struct config_enum * record, int val);
 
223
extern bool config_enum_lookup_by_name(struct config_enum * record,
 
224
                                                   const char *value, int *retval);
224
225
 
225
226
 
226
227
#endif   /* GUC_TABLES_H */