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
0a8e9c4e
Commit
0a8e9c4e
authored
Feb 23, 1999
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define JoinExpr structure for outer join syntax.
Clean up comments in execnodes.h.
parent
70600bd6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+2
-2
src/include/nodes/nodes.h
src/include/nodes/nodes.h
+2
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+14
-14
No files found.
src/include/nodes/execnodes.h
View file @
0a8e9c4e
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: execnodes.h,v 1.2
4 1999/02/13 23:21:37 momjian
Exp $
* $Id: execnodes.h,v 1.2
5 1999/02/23 07:55:23 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -607,7 +607,7 @@ typedef struct GroupState
* SortState information
*
*| sort nodes are really just a kind of a scan since
*| we implement sorts by retriev
e
ing the entire subplan
*| we implement sorts by retrieving the entire subplan
*| into a temp relation, sorting the temp relation into
*| another sorted relation, and then preforming a simple
*| unqualified sequential scan on the sorted relation..
...
...
src/include/nodes/nodes.h
View file @
0a8e9c4e
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.4
3 1999/02/13 23:21:38 momjian
Exp $
* $Id: nodes.h,v 1.4
4 1999/02/23 07:55:24 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -215,7 +215,7 @@ typedef enum NodeTag
T_SortClause
,
T_GroupClause
,
T_SubSelect
,
T_Join
Using
,
T_Join
Expr
,
T_CaseExpr
,
T_CaseWhen
,
T_RowMark
...
...
src/include/nodes/parsenodes.h
View file @
0a8e9c4e
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.7
0 1999/02/13 23:21:39 momjian
Exp $
* $Id: parsenodes.h,v 1.7
1 1999/02/23 07:55:24 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -149,7 +149,7 @@ typedef struct CreateStmt
typedef
enum
ConstrType
/* type of constaints */
{
CONSTR_N
ONE
,
CONSTR_NOTNULL
,
CONSTR_DEFAULT
,
CONSTR_CHECK
,
CONSTR_PRIMARY
,
CONSTR_UNIQUE
CONSTR_N
ULL
,
CONSTR_NOTNULL
,
CONSTR_DEFAULT
,
CONSTR_CHECK
,
CONSTR_PRIMARY
,
CONSTR_UNIQUE
}
ConstrType
;
typedef
struct
Constraint
...
...
@@ -671,7 +671,6 @@ typedef struct SelectStmt
List
*
forUpdate
;
/* FOR UPDATE clause */
}
SelectStmt
;
/****************************************************************************
* Supporting data structures for Parse Trees
****************************************************************************/
...
...
@@ -854,17 +853,6 @@ typedef struct SortGroupBy
Node
*
node
;
/* Expression */
}
SortGroupBy
;
/*
* JoinUsing - for JOIN USING clause
*/
typedef
struct
JoinUsing
{
NodeTag
type
;
int
resno
;
/* target number */
char
*
range
;
char
*
name
;
/* name of column to sort on */
}
JoinUsing
;
/*
* RangeVar - range variable, used in FROM clauses
*/
...
...
@@ -898,6 +886,18 @@ typedef struct DefElem
Node
*
arg
;
/* a (Value *) or a (TypeName *) */
}
DefElem
;
/*
* JoinExpr - for JOIN expressions
*/
typedef
struct
JoinExpr
{
NodeTag
type
;
int
jointype
;
RangeVar
*
larg
;
Node
*
rarg
;
List
*
quals
;
}
JoinExpr
;
/****************************************************************************
* Nodes for a Query tree
...
...
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