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
e8783d4a
Commit
e8783d4a
authored
Dec 23, 1997
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change field name in RetrieveStmt from selectClause to unionClause.
Add unionall boolean field to SubSelect structure.
parent
0c714ea9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+3
-2
No files found.
src/include/nodes/parsenodes.h
View file @
e8783d4a
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: parsenodes.h,v 1.3
7 1997/12/04 23:55:5
2 thomas Exp $
* $Id: parsenodes.h,v 1.3
8 1997/12/23 19:58:1
2 thomas Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -632,7 +632,7 @@ typedef struct RetrieveStmt
...
@@ -632,7 +632,7 @@ typedef struct RetrieveStmt
Node
*
whereClause
;
/* qualifications */
Node
*
whereClause
;
/* qualifications */
List
*
groupClause
;
/* group by clause */
List
*
groupClause
;
/* group by clause */
Node
*
havingClause
;
/* having conditional-expression */
Node
*
havingClause
;
/* having conditional-expression */
List
*
selectClause
;
/*
subselect parameters */
List
*
unionClause
;
/* union
subselect parameters */
List
*
sortClause
;
/* sort clause (a list of SortGroupBy's) */
List
*
sortClause
;
/* sort clause (a list of SortGroupBy's) */
}
RetrieveStmt
;
}
RetrieveStmt
;
...
@@ -648,6 +648,7 @@ typedef struct SubSelect
...
@@ -648,6 +648,7 @@ typedef struct SubSelect
{
{
NodeTag
type
;
NodeTag
type
;
char
*
unique
;
/* NULL, '*', or unique attribute name */
char
*
unique
;
/* NULL, '*', or unique attribute name */
int
unionall
;
/* union without unique sort */
List
*
targetList
;
/* the target list (of ResTarget) */
List
*
targetList
;
/* the target list (of ResTarget) */
List
*
fromClause
;
/* the from clause */
List
*
fromClause
;
/* the from clause */
Node
*
whereClause
;
/* qualifications */
Node
*
whereClause
;
/* qualifications */
...
...
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