Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2f09dd99
Commit
2f09dd99
authored
Jun 20, 1997
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix broken parsing for lists of options. Apparently broken when support was
added for keyword=value options.
parent
9af564ad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
57 deletions
+59
-57
src/backend/tcop/variable.c
src/backend/tcop/variable.c
+59
-57
No files found.
src/backend/tcop/variable.c
View file @
2f09dd99
...
@@ -2,12 +2,13 @@
...
@@ -2,12 +2,13 @@
* Routines for handling of 'SET var TO', 'SHOW var' and 'RESET var'
* Routines for handling of 'SET var TO', 'SHOW var' and 'RESET var'
* statements.
* statements.
*
*
* $Id: variable.c,v 1.1
1 1997/06/03 06:29:31 vadim
Exp $
* $Id: variable.c,v 1.1
2 1997/06/20 17:17:03 thomas
Exp $
*
*
*/
*/
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
#include <ctype.h>
#include "postgres.h"
#include "postgres.h"
#include "miscadmin.h"
#include "miscadmin.h"
#include "tcop/variable.h"
#include "tcop/variable.h"
...
@@ -39,54 +40,59 @@ static const char *get_token(char **tok, char **val, const char *str)
...
@@ -39,54 +40,59 @@ static const char *get_token(char **tok, char **val, const char *str)
const
char
*
start
;
const
char
*
start
;
int
len
=
0
;
int
len
=
0
;
*
tok
=
*
val
=
NULL
;
*
tok
=
NULL
;
if
(
val
!=
NULL
)
*
val
=
NULL
;
if
(
!
(
*
str
)
)
if
(
!
(
*
str
)
)
return
NULL
;
return
NULL
;
/* skip white spaces */
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
while
(
isspace
(
*
str
))
str
++
;
str
++
;
if
(
*
str
==
','
||
*
str
==
'='
)
if
(
*
str
==
','
||
*
str
==
'='
)
elog
(
WARN
,
"Syntax error near (%s): empty setting"
,
str
);
elog
(
WARN
,
"Syntax error near (%s): empty setting"
,
str
);
/* end of string? then return NULL */
if
(
!
(
*
str
)
)
if
(
!
(
*
str
)
)
return
NULL
;
return
NULL
;
/* OK, at beginning of non-NULL string... */
start
=
str
;
start
=
str
;
/*
/*
* count chars in token until we hit white space or comma
* count chars in token until we hit white space or comma
* or '=' or end of string
* or '=' or end of string
*/
*/
while
(
*
str
&&
*
str
!=
' '
&&
*
str
!=
'\t'
while
(
*
str
&&
(
!
isspace
(
*
str
))
&&
*
str
!=
','
&&
*
str
!=
'='
)
&&
*
str
!=
','
&&
*
str
!=
'='
)
{
{
str
++
;
str
++
;
len
++
;
len
++
;
}
}
*
tok
=
(
char
*
)
palloc
(
len
+
1
);
*
tok
=
(
char
*
)
PALLOC
(
len
+
1
);
strncpy
(
*
tok
,
start
,
len
);
strncpy
(
*
tok
,
start
,
len
);
(
*
tok
)[
len
]
=
'\0'
;
(
*
tok
)[
len
]
=
'\0'
;
/* skip white spaces */
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
while
(
isspace
(
*
str
))
str
++
;
str
++
;
if
(
!
(
*
str
)
)
/* end of string? */
return
(
NULL
);
if
(
!
(
*
str
)
)
{
if
(
*
str
==
','
)
return
(
str
);
/* delimiter? */
}
else
if
(
*
str
==
','
)
{
return
(
++
str
);
return
(
++
str
);
if
(
*
str
!=
'='
)
}
else
if
((
val
==
NULL
)
||
(
*
str
!=
'='
))
{
elog
(
WARN
,
"Syntax error near (%s)"
,
str
);
elog
(
WARN
,
"Syntax error near (%s)"
,
str
);
};
str
++
;
/* '=': get value */
str
++
;
/* '=': get value */
len
=
0
;
len
=
0
;
/* skip white spaces */
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
while
(
isspace
(
*
str
))
str
++
;
str
++
;
if
(
*
str
==
','
||
!
(
*
str
)
)
if
(
*
str
==
','
||
!
(
*
str
)
)
elog
(
WARN
,
"Syntax error near (=%s)"
,
str
);
elog
(
WARN
,
"Syntax error near (=%s)"
,
str
);
...
@@ -94,22 +100,21 @@ static const char *get_token(char **tok, char **val, const char *str)
...
@@ -94,22 +100,21 @@ static const char *get_token(char **tok, char **val, const char *str)
start
=
str
;
start
=
str
;
/*
/*
* count chars in token' value until we hit white space or comma
* count chars in token'
s
value until we hit white space or comma
* or end of string
* or end of string
*/
*/
while
(
*
str
&&
*
str
!=
' '
&&
*
str
!=
'\t'
&&
*
str
!=
','
)
while
(
*
str
&&
(
!
isspace
(
*
str
))
&&
*
str
!=
','
)
{
{
str
++
;
str
++
;
len
++
;
len
++
;
}
}
*
val
=
(
char
*
)
palloc
(
len
+
1
);
*
val
=
(
char
*
)
PALLOC
(
len
+
1
);
strncpy
(
*
val
,
start
,
len
);
strncpy
(
*
val
,
start
,
len
);
(
*
val
)[
len
]
=
'\0'
;
(
*
val
)[
len
]
=
'\0'
;
/* skip white spaces */
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
while
(
isspace
(
*
str
))
str
++
;
str
++
;
if
(
!
(
*
str
)
)
if
(
!
(
*
str
)
)
return
(
NULL
);
return
(
NULL
);
...
@@ -146,8 +151,8 @@ static bool parse_geqo (const char *value)
...
@@ -146,8 +151,8 @@ static bool parse_geqo (const char *value)
if
(
tok
==
NULL
)
if
(
tok
==
NULL
)
elog
(
WARN
,
"Value undefined"
);
elog
(
WARN
,
"Value undefined"
);
if
(
rest
)
if
(
(
rest
)
&&
(
*
rest
!=
'\0'
)
)
elog
(
WARN
,
"Una
cceptable data (%s)"
,
rest
);
elog
(
WARN
,
"Una
ble to parse '%s'"
,
value
);
if
(
strcasecmp
(
tok
,
"on"
)
==
0
)
if
(
strcasecmp
(
tok
,
"on"
)
==
0
)
{
{
...
@@ -158,21 +163,21 @@ static bool parse_geqo (const char *value)
...
@@ -158,21 +163,21 @@ static bool parse_geqo (const char *value)
geqo_rels
=
pg_atoi
(
val
,
sizeof
(
int32
),
'\0'
);
geqo_rels
=
pg_atoi
(
val
,
sizeof
(
int32
),
'\0'
);
if
(
geqo_rels
<=
1
)
if
(
geqo_rels
<=
1
)
elog
(
WARN
,
"Bad value for # of relations (%s)"
,
val
);
elog
(
WARN
,
"Bad value for # of relations (%s)"
,
val
);
pfree
(
val
);
PFREE
(
val
);
}
}
_use_geqo_
=
true
;
_use_geqo_
=
true
;
_use_geqo_rels_
=
geqo_rels
;
_use_geqo_rels_
=
geqo_rels
;
}
}
else
if
(
strcasecmp
(
tok
,
"off"
)
==
0
)
else
if
(
strcasecmp
(
tok
,
"off"
)
==
0
)
{
{
if
(
val
!=
NULL
)
if
(
(
val
!=
NULL
)
&&
(
*
val
!=
'\0'
)
)
elog
(
WARN
,
"
Unacceptable data (%s)"
,
val
);
elog
(
WARN
,
"
%s does not allow a parameter"
,
tok
);
_use_geqo_
=
false
;
_use_geqo_
=
false
;
}
}
else
else
elog
(
WARN
,
"Bad value for GEQO (%s)"
,
value
);
elog
(
WARN
,
"Bad value for GEQO (%s)"
,
value
);
pfree
(
tok
);
PFREE
(
tok
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -180,7 +185,7 @@ static bool show_geqo ()
...
@@ -180,7 +185,7 @@ static bool show_geqo ()
{
{
if
(
_use_geqo_
)
if
(
_use_geqo_
)
elog
(
NOTICE
,
"GEQO is ON begining with %d relations"
,
_use_geqo_rels_
);
elog
(
NOTICE
,
"GEQO is ON begin
n
ing with %d relations"
,
_use_geqo_rels_
);
else
else
elog
(
NOTICE
,
"GEQO is OFF"
);
elog
(
NOTICE
,
"GEQO is OFF"
);
return
TRUE
;
return
TRUE
;
...
@@ -278,14 +283,11 @@ static bool reset_cost_index ()
...
@@ -278,14 +283,11 @@ static bool reset_cost_index ()
static
bool
parse_date
(
const
char
*
value
)
static
bool
parse_date
(
const
char
*
value
)
{
{
char
*
tok
,
*
val
;
char
*
tok
;
int
dcnt
=
0
,
ecnt
=
0
;
int
dcnt
=
0
,
ecnt
=
0
;
while
((
value
=
get_token
(
&
tok
,
&
val
,
value
))
!=
0
)
while
((
value
=
get_token
(
&
tok
,
NULL
,
value
))
!=
0
)
{
{
if
(
val
!=
NULL
)
elog
(
WARN
,
"Syntax error near (%s)"
,
val
);
/* Ugh. Somebody ought to write a table driven version -- mjl */
/* Ugh. Somebody ought to write a table driven version -- mjl */
if
(
!
strcasecmp
(
tok
,
"iso"
))
if
(
!
strcasecmp
(
tok
,
"iso"
))
...
@@ -324,7 +326,7 @@ static bool parse_date(const char *value)
...
@@ -324,7 +326,7 @@ static bool parse_date(const char *value)
{
{
elog
(
WARN
,
"Bad value for date style (%s)"
,
tok
);
elog
(
WARN
,
"Bad value for date style (%s)"
,
tok
);
}
}
pfree
(
tok
);
PFREE
(
tok
);
}
}
if
(
dcnt
>
1
||
ecnt
>
1
)
if
(
dcnt
>
1
||
ecnt
>
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment