Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
664f93ce
Commit
664f93ce
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Un-break custom_variable_classes kluge ... mea culpa.
parent
fc402fdf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/utils/misc/guc-file.l
+14
-11
14 additions, 11 deletions
src/backend/utils/misc/guc-file.l
with
14 additions
and
11 deletions
src/backend/utils/misc/guc-file.l
+
14
−
11
View file @
664f93ce
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*
*
* Copyright (c) 2000-2004, PostgreSQL Global Development Group
* Copyright (c) 2000-2004, PostgreSQL Global Development Group
*
*
* $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.2
6
2004/1
0/08 01:36:35
tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.2
7
2004/1
1/11 23:45:13
tgl Exp $
*/
*/
%{
%{
...
@@ -203,25 +203,28 @@ ProcessConfigFile(GucContext context)
...
@@ -203,25 +203,28 @@ ProcessConfigFile(GucContext context)
if (token != GUC_EOL)
if (token != GUC_EOL)
goto parse_error;
goto parse_error;
item = palloc(sizeof *item);
item->name = opt_name;
item->value = opt_value;
if (strcmp(opt_name, "custom_variable_classes") == 0)
if (strcmp(opt_name, "custom_variable_classes") == 0)
{
{
/*
/*
* This variable must be processed first as it controls
* This variable must be processed first as it controls
* the validity of other variables; so prepend to
* the validity of other variables; so apply immediately.
* the list instead of appending.
*/
*/
item->next = head;
if (!set_config_option(opt_name, opt_value, context,
head = item;
PGC_S_FILE, false, true))
if (!tail)
{
tail = item;
pfree(opt_name);
pfree(opt_value);
goto cleanup_exit;
}
pfree(opt_name);
pfree(opt_value);
}
}
else
else
{
{
/* append to list */
/* append to list */
item = palloc(sizeof *item);
item->name = opt_name;
item->value = opt_value;
item->next = NULL;
item->next = NULL;
if (!head)
if (!head)
head = item;
head = item;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment