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
bc67a461
Commit
bc67a461
authored
Apr 23, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1. VariableShowStmt and VariableResetStmt added.
2. VacuumStmt changed (for VACUUM ANALYZE...).
parent
72fcb4ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+24
-2
No files found.
src/include/nodes/parsenodes.h
View file @
bc67a461
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.1
3 1997/04/05 06:19:22
vadim Exp $
* $Id: parsenodes.h,v 1.1
4 1997/04/23 05:58:06
vadim Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -410,7 +410,9 @@ typedef struct ClusterStmt {
typedef
struct
VacuumStmt
{
NodeTag
type
;
bool
verbose
;
/* print status info */
bool
analyze
;
/* analyze data */
char
*
vacrel
;
/* table to vacuum */
List
*
va_spec
;
/* columns to analyse */
}
VacuumStmt
;
/* ----------------------
...
...
@@ -432,7 +434,27 @@ typedef struct VariableSetStmt {
NodeTag
type
;
char
*
name
;
char
*
value
;
}
VariableSetStmt
;
}
VariableSetStmt
;
/* ----------------------
* Show Statement
* ----------------------
*/
typedef
struct
VariableShowStmt
{
NodeTag
type
;
char
*
name
;
}
VariableShowStmt
;
/* ----------------------
* Reset Statement
* ----------------------
*/
typedef
struct
VariableResetStmt
{
NodeTag
type
;
char
*
name
;
}
VariableResetStmt
;
/*****************************************************************************
...
...
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