mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
There was enough code drift since this patch, that a couple of bugs
materialized. New items have been added to GucContext and GucSource enums, but of course they were not added to the corresponding GucContextName[] and GucSourceName[] arrays in the patch. Here's a new patch to fix the resulting bugs. Joe Conway
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Copyright 2000-2003 by PostgreSQL Global Development Group
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* $Id: guc.h,v 1.36 2003/07/27 04:35:54 momjian Exp $
|
||||
* $Id: guc.h,v 1.37 2003/07/28 16:22:13 momjian Exp $
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef GUC_H
|
||||
@ -52,6 +52,8 @@
|
||||
* non-super users.
|
||||
*
|
||||
* USERSET options can be set by anyone any time.
|
||||
*
|
||||
* Keep in sync with GucContextName in guc.c
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
|
@ -7,7 +7,7 @@
|
||||
*
|
||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||
*
|
||||
* $Id: guc_tables.h,v 1.2 2003/07/27 04:35:54 momjian Exp $
|
||||
* $Id: guc_tables.h,v 1.3 2003/07/28 16:22:16 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -58,6 +58,8 @@ enum config_group
|
||||
|
||||
/*
|
||||
* GUC supports these types of variables:
|
||||
*
|
||||
* Keep in sync with config_type_name in guc.c
|
||||
*/
|
||||
enum config_type
|
||||
{
|
||||
|
Reference in New Issue
Block a user