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
cda886fd
Commit
cda886fd
authored
27 years ago
by
Vadim B. Mikheev
Browse files
Options
Downloads
Patches
Plain Diff
SET var TO 'a=b'
^^ is supported by get_token now. (SET geqo TO 'on=XXX' works now).
parent
541f1855
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/tcop/variable.c
+127
-30
127 additions, 30 deletions
src/backend/tcop/variable.c
with
127 additions
and
30 deletions
src/backend/tcop/variable.c
+
127
−
30
View file @
cda886fd
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* 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.
9
1997/0
5/20 10:31:42
vadim Exp $
* $Id: variable.c,v 1.
10
1997/0
6/02 11:00:57
vadim Exp $
*
*
*/
*/
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
extern
Cost
_cpu_page_wight_
;
extern
Cost
_cpu_page_wight_
;
extern
Cost
_cpu_index_page_wight_
;
extern
Cost
_cpu_index_page_wight_
;
extern
bool
_use_geqo_
;
extern
bool
_use_geqo_
;
extern
int32
_use_geqo_rels_
;
extern
bool
_use_right_sided_plans_
;
extern
bool
_use_right_sided_plans_
;
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
...
@@ -33,27 +34,92 @@ struct PGVariables PGVariables =
...
@@ -33,27 +34,92 @@ struct PGVariables PGVariables =
};
};
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
static
const
char
*
get_token
(
char
*
buf
,
int
size
,
const
char
*
str
)
static
const
char
*
get_token
(
char
**
tok
,
char
**
val
,
const
char
*
str
)
{
{
if
(
!*
str
)
const
char
*
start
;
return
NULL
;
int
len
=
0
;
/* skip white space */
while
(
*
str
&&
(
*
str
==
' '
||
*
str
==
'\t'
))
str
++
;
/* copy until we hit white space or comma or end of string */
*
tok
=
*
val
=
NULL
;
while
(
*
str
&&
*
str
!=
' '
&&
*
str
!=
'\t'
&&
*
str
!=
','
&&
size
--
>
1
)
*
buf
++
=
*
str
++
;
*
buf
=
'\0'
;
if
(
!
(
*
str
)
)
return
NULL
;
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
str
++
;
if
(
*
str
==
','
||
*
str
==
'='
)
elog
(
WARN
,
"Syntax error near (%s): empty setting"
,
str
);
if
(
!
(
*
str
)
)
return
NULL
;
/* skip white space and comma*/
start
=
str
;
while
(
*
str
&&
(
*
str
==
' '
||
*
str
==
'\t'
||
*
str
==
','
))
str
++
;
return
str
;
/*
}
* count chars in token until we hit white space or comma
* or '=' or end of string
*/
while
(
*
str
&&
*
str
!=
' '
&&
*
str
!=
'\t'
&&
*
str
!=
','
&&
*
str
!=
'='
)
{
str
++
;
len
++
;
}
*
tok
=
(
char
*
)
palloc
(
len
+
1
);
strncpy
(
*
tok
,
start
,
len
);
(
*
tok
)[
len
]
=
'\0'
;
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
str
++
;
if
(
!
(
*
str
)
)
return
(
NULL
);
if
(
*
str
==
','
)
return
(
++
str
);
if
(
*
str
!=
'='
)
elog
(
WARN
,
"Syntax error near (%s)"
,
str
);
str
++
;
/* '=': get value */
len
=
0
;
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
str
++
;
if
(
*
str
==
','
||
!
(
*
str
)
)
elog
(
WARN
,
"Syntax error near (=%s)"
,
str
);
start
=
str
;
/*
* count chars in token' value until we hit white space or comma
* or end of string
*/
while
(
*
str
&&
*
str
!=
' '
&&
*
str
!=
'\t'
&&
*
str
!=
','
)
{
str
++
;
len
++
;
}
*
val
=
(
char
*
)
palloc
(
len
+
1
);
strncpy
(
*
val
,
start
,
len
);
(
*
val
)[
len
]
=
'\0'
;
/* skip white spaces */
while
(
*
str
==
' '
||
*
str
==
'\t'
)
str
++
;
if
(
!
(
*
str
)
)
return
(
NULL
);
if
(
*
str
==
','
)
return
(
++
str
);
elog
(
WARN
,
"Syntax error near (%s)"
,
str
);
return
str
;
}
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
static
bool
parse_null
(
const
char
*
value
)
static
bool
parse_null
(
const
char
*
value
)
...
@@ -73,14 +139,40 @@ static bool reset_null(const char *value)
...
@@ -73,14 +139,40 @@ static bool reset_null(const char *value)
static
bool
parse_geqo
(
const
char
*
value
)
static
bool
parse_geqo
(
const
char
*
value
)
{
{
const
char
*
rest
;
if
(
strcasecmp
(
value
,
"on"
)
==
0
)
char
*
tok
,
*
val
;
rest
=
get_token
(
&
tok
,
&
val
,
value
);
if
(
tok
==
NULL
)
elog
(
WARN
,
"Value undefined"
);
if
(
rest
)
elog
(
WARN
,
"Unacceptable data (%s)"
,
rest
);
if
(
strcasecmp
(
tok
,
"on"
)
==
0
)
{
int32
geqo_rels
=
_use_geqo_rels_
;
if
(
val
!=
NULL
)
{
geqo_rels
=
pg_atoi
(
val
,
sizeof
(
int32
),
'\0'
);
if
(
geqo_rels
<=
1
)
elog
(
WARN
,
"Bad value for # of relations (%s)"
,
val
);
pfree
(
val
);
}
_use_geqo_
=
true
;
_use_geqo_
=
true
;
else
if
(
strcasecmp
(
value
,
"off"
)
==
0
)
_use_geqo_rels_
=
geqo_rels
;
}
else
if
(
strcasecmp
(
tok
,
"off"
)
==
0
)
{
if
(
val
!=
NULL
)
elog
(
WARN
,
"Unacceptable data (%s)"
,
val
);
_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
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -88,7 +180,7 @@ static bool show_geqo ()
...
@@ -88,7 +180,7 @@ static bool show_geqo ()
{
{
if
(
_use_geqo_
)
if
(
_use_geqo_
)
elog
(
NOTICE
,
"GEQO is ON
"
);
elog
(
NOTICE
,
"GEQO is ON
begining with %d relations"
,
_use_geqo_rels_
);
else
else
elog
(
NOTICE
,
"GEQO is OFF"
);
elog
(
NOTICE
,
"GEQO is OFF"
);
return
TRUE
;
return
TRUE
;
...
@@ -102,6 +194,7 @@ static bool reset_geqo ()
...
@@ -102,6 +194,7 @@ static bool reset_geqo ()
#else
#else
_use_geqo_
=
false
;
_use_geqo_
=
false
;
#endif
#endif
_use_geqo_rels_
=
GEQO_RELS
;
return
TRUE
;
return
TRUE
;
}
}
...
@@ -184,12 +277,15 @@ static bool reset_cost_index ()
...
@@ -184,12 +277,15 @@ static bool reset_cost_index ()
}
}
static
bool
parse_date
(
const
char
*
value
)
static
bool
parse_date
(
const
char
*
value
)
{
{
char
tok
[
32
]
;
char
*
tok
,
*
val
;
int
dcnt
=
0
,
ecnt
=
0
;
int
dcnt
=
0
,
ecnt
=
0
;
while
((
value
=
get_token
(
tok
,
sizeof
(
tok
),
value
))
!=
0
)
while
((
value
=
get_token
(
&
tok
,
&
val
,
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"
))
...
@@ -228,13 +324,14 @@ static bool parse_date(const char *value)
...
@@ -228,13 +324,14 @@ 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
);
}
if
(
dcnt
>
1
||
ecnt
>
1
)
if
(
dcnt
>
1
||
ecnt
>
1
)
elog
(
NOTICE
,
"Conflicting settings for date"
);
elog
(
NOTICE
,
"Conflicting settings for date"
);
return
TRUE
;
return
TRUE
;
}
}
static
bool
show_date
()
static
bool
show_date
()
{
{
...
...
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