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
ea567d2f
Commit
ea567d2f
authored
27 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Declare routines which support SET keyword = value SQL commands.
parent
7016678a
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/include/tcop/variable.h
+30
-1
30 additions, 1 deletion
src/include/tcop/variable.h
with
30 additions
and
1 deletion
src/include/tcop/variable.h
+
30
−
1
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
/0
8
0
2:39:21 momjian
Exp $
* $Id: variable.h,v 1.
7
1997/
11
/0
7
0
6: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 */
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