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
ea567d2f
Commit
ea567d2f
authored
Nov 07, 1997
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare routines which support SET keyword = value SQL commands.
parent
7016678a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
src/include/tcop/variable.h
src/include/tcop/variable.h
+30
-1
No files found.
src/include/tcop/variable.h
View file @
ea567d2f
...
...
@@ -2,9 +2,11 @@
* Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
* statements
*
* $Id: variable.h,v 1.
6 1997/09/08 02:39:21 momjian
Exp $
* $Id: variable.h,v 1.
7 1997/11/07 06:45:16 thomas
Exp $
*
*/
#ifndef VARIABLE_H
#define VARIABLE_H 1
enum
DateFormat
{
...
...
@@ -27,3 +29,30 @@ extern struct PGVariables PGVariables;
bool
SetPGVariable
(
const
char
*
,
const
char
*
);
bool
GetPGVariable
(
const
char
*
);
bool
ResetPGVariable
(
const
char
*
);
extern
bool
set_date
(
void
);
extern
bool
show_date
(
void
);
extern
bool
reset_date
(
void
);
extern
bool
parse_date
(
const
char
*
);
extern
bool
set_timezone
(
void
);
extern
bool
show_timezone
(
void
);
extern
bool
reset_timezone
(
void
);
extern
bool
parse_timezone
(
const
char
*
);
extern
bool
set_cost_heap
(
void
);
extern
bool
show_cost_heap
(
void
);
extern
bool
reset_cost_heap
(
void
);
extern
bool
parse_cost_heap
(
const
char
*
);
extern
bool
set_cost_index
(
void
);
extern
bool
show_cost_index
(
void
);
extern
bool
reset_cost_index
(
void
);
extern
bool
parse_cost_index
(
const
char
*
);
extern
bool
set_r_plans
(
void
);
extern
bool
show_r_plans
(
void
);
extern
bool
reset_r_plans
(
void
);
extern
bool
parse_r_plans
(
const
char
*
);
extern
bool
set_geqo
(
void
);
extern
bool
show_geqo
(
void
);
extern
bool
reset_geqo
(
void
);
extern
bool
parse_geqo
(
const
char
*
);
#endif
/* VARIABLE_H */
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