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
de97e7fa
Commit
de97e7fa
authored
Apr 29, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SET geqo TO ON|OFF
parent
a4792bd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletion
+37
-1
src/backend/tcop/variable.c
src/backend/tcop/variable.c
+37
-1
No files found.
src/backend/tcop/variable.c
View file @
de97e7fa
...
@@ -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.
6 1997/04/24 15:41:37
vadim Exp $
* $Id: variable.c,v 1.
7 1997/04/29 04:38:58
vadim Exp $
*
*
*/
*/
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,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_
;
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
#if USE_EURODATES
#if USE_EURODATES
...
@@ -69,6 +70,40 @@ static bool reset_null(const char *value)
...
@@ -69,6 +70,40 @@ static bool reset_null(const char *value)
return
TRUE
;
return
TRUE
;
}
}
static
bool
parse_geqo
(
const
char
*
value
)
{
if
(
strcasecmp
(
value
,
"on"
)
==
0
)
_use_geqo_
=
true
;
else
if
(
strcasecmp
(
value
,
"off"
)
==
0
)
_use_geqo_
=
false
;
else
elog
(
WARN
,
"Bad value for GEQO (%s)"
,
value
);
return
TRUE
;
}
static
bool
show_geqo
()
{
if
(
_use_geqo_
)
elog
(
NOTICE
,
"GEQO is ON"
);
else
elog
(
NOTICE
,
"GEQO is OFF"
);
return
TRUE
;
}
static
bool
reset_geqo
()
{
#ifdef GEQO
_use_geqo_
=
true
;
#else
_use_geqo_
=
false
;
#endif
return
TRUE
;
}
static
bool
parse_cost_heap
(
const
char
*
value
)
static
bool
parse_cost_heap
(
const
char
*
value
)
{
{
float32
res
=
float4in
((
char
*
)
value
);
float32
res
=
float4in
((
char
*
)
value
);
...
@@ -202,6 +237,7 @@ struct VariableParsers
...
@@ -202,6 +237,7 @@ struct VariableParsers
show_cost_heap
,
reset_cost_heap
},
show_cost_heap
,
reset_cost_heap
},
{
"cost_index"
,
parse_cost_index
,
{
"cost_index"
,
parse_cost_index
,
show_cost_index
,
reset_cost_index
},
show_cost_index
,
reset_cost_index
},
{
"geqo"
,
parse_geqo
,
show_geqo
,
reset_geqo
},
{
NULL
,
NULL
,
NULL
}
{
NULL
,
NULL
,
NULL
}
};
};
...
...
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