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
e6c714bf
Commit
e6c714bf
authored
Jan 10, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bye CursorStmt, now use SelectStmt.
parent
e7b205b4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
69 deletions
+26
-69
src/backend/parser/analyze.c
src/backend/parser/analyze.c
+13
-43
src/backend/parser/gram.y
src/backend/parser/gram.y
+9
-6
src/include/nodes/nodes.h
src/include/nodes/nodes.h
+1
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+3
-18
No files found.
src/backend/parser/analyze.c
View file @
e6c714bf
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.6
2 1998/01/09 20:05:49
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.6
3 1998/01/10 04:29:47
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -39,7 +39,7 @@ static Query *transformExtendStmt(ParseState *pstate, ExtendStmt *stmt);
static
Query
*
transformRuleStmt
(
ParseState
*
query
,
RuleStmt
*
stmt
);
static
Query
*
transformSelectStmt
(
ParseState
*
pstate
,
SelectStmt
*
stmt
);
static
Query
*
transformUpdateStmt
(
ParseState
*
pstate
,
UpdateStmt
*
stmt
);
static
Query
*
transformCursorStmt
(
ParseState
*
pstate
,
Cursor
Stmt
*
stmt
);
static
Query
*
transformCursorStmt
(
ParseState
*
pstate
,
Select
Stmt
*
stmt
);
static
Query
*
transformCreateStmt
(
ParseState
*
pstate
,
CreateStmt
*
stmt
);
List
*
extras
=
NIL
;
...
...
@@ -175,12 +175,11 @@ transformStmt(ParseState *pstate, Node *parseTree)
result
=
transformUpdateStmt
(
pstate
,
(
UpdateStmt
*
)
parseTree
);
break
;
case
T_CursorStmt
:
result
=
transformCursorStmt
(
pstate
,
(
CursorStmt
*
)
parseTree
);
break
;
case
T_SelectStmt
:
result
=
transformSelectStmt
(
pstate
,
(
SelectStmt
*
)
parseTree
);
if
(
!
((
SelectStmt
*
)
parseTree
)
->
portalname
)
result
=
transformSelectStmt
(
pstate
,
(
SelectStmt
*
)
parseTree
);
else
result
=
transformCursorStmt
(
pstate
,
(
SelectStmt
*
)
parseTree
);
break
;
default:
...
...
@@ -873,6 +872,9 @@ transformUpdateStmt(ParseState *pstate, UpdateStmt *stmt)
qry
->
rtable
=
pstate
->
p_rtable
;
qry
->
resultRelation
=
refnameRangeTablePosn
(
pstate
->
p_rtable
,
stmt
->
relname
);
if
(
pstate
->
p_numAgg
>
0
)
finalizeAggregates
(
pstate
,
qry
);
/* make sure we don't have aggregates in the where clause */
if
(
pstate
->
p_numAgg
>
0
)
parseCheckAggregates
(
pstate
,
qry
);
...
...
@@ -886,47 +888,15 @@ transformUpdateStmt(ParseState *pstate, UpdateStmt *stmt)
*
*/
static
Query
*
transformCursorStmt
(
ParseState
*
pstate
,
Cursor
Stmt
*
stmt
)
transformCursorStmt
(
ParseState
*
pstate
,
Select
Stmt
*
stmt
)
{
Query
*
qry
=
makeNode
(
Query
);
/*
* in the old days, a cursor statement is a 'retrieve into portal'; If
* you change the following, make sure you also go through the code in
* various places that tests the kind of operation.
*/
qry
->
commandType
=
CMD_SELECT
;
Query
*
qry
;
/* set up a range table */
makeRangeTable
(
pstate
,
NULL
,
stmt
->
fromClause
);
qry
->
uniqueFlag
=
stmt
->
unique
;
qry
=
transformSelectStmt
(
pstate
,
stmt
);
qry
->
into
=
stmt
->
portalname
;
qry
->
isPortal
=
TRUE
;
qry
->
isBinary
=
stmt
->
binary
;
/* internal portal */
/* fix the target list */
qry
->
targetList
=
transformTargetList
(
pstate
,
stmt
->
targetList
);
/* fix where clause */
qry
->
qual
=
transformWhereClause
(
pstate
,
stmt
->
whereClause
);
/* fix order clause */
qry
->
sortClause
=
transformSortClause
(
pstate
,
stmt
->
sortClause
,
NIL
,
qry
->
targetList
,
qry
->
uniqueFlag
);
/* fix group by clause */
qry
->
groupClause
=
transformGroupClause
(
pstate
,
stmt
->
groupClause
,
qry
->
targetList
);
qry
->
rtable
=
pstate
->
p_rtable
;
if
(
pstate
->
p_numAgg
>
0
)
finalizeAggregates
(
pstate
,
qry
);
return
(
Query
*
)
qry
;
return
qry
;
}
src/backend/parser/gram.y
View file @
e6c714bf
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.8
7 1998/01/09 21:26:12
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.8
8 1998/01/10 04:29:50
momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -2226,12 +2226,13 @@ UpdateStmt: UPDATE relation_name
* CURSOR STATEMENTS
*
*****************************************************************************/
CursorStmt: DECLARE name opt_binary CURSOR FOR
SELECT opt_unique res_target_list2
from_clause where_clause group_clause sort_clause
SELECT opt_unique res_target_list2
from_clause where_clause
group_clause having_clause
union_clause sort_clause
{
CursorStmt *n = makeNode(Cursor
Stmt);
SelectStmt *n = makeNode(Select
Stmt);
/* from PORTAL name */
/*
...
...
@@ -2251,7 +2252,9 @@ CursorStmt: DECLARE name opt_binary CURSOR FOR
n->fromClause = $9;
n->whereClause = $10;
n->groupClause = $11;
n->sortClause = $12;
n->havingClause = $12;
n->unionClause = $13;
n->sortClause = $14;
$$ = (Node *)n;
}
;
...
...
src/include/nodes/nodes.h
View file @
e6c714bf
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.2
1 1998/01/09 21:13:43
momjian Exp $
* $Id: nodes.h,v 1.2
2 1998/01/10 04:30:08
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -145,7 +145,6 @@ typedef enum NodeTag
T_InsertStmt
,
T_DeleteStmt
,
T_UpdateStmt
,
T_CursorStmt
,
T_SelectStmt
,
T_AddAttrStmt
,
T_AggregateStmt
,
...
...
src/include/nodes/parsenodes.h
View file @
e6c714bf
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.4
1 1998/01/09 20:06:08
momjian Exp $
* $Id: parsenodes.h,v 1.4
2 1998/01/10 04:30:11
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -604,23 +604,6 @@ typedef struct UpdateStmt
List
*
fromClause
;
/* the from clause */
}
UpdateStmt
;
/* ----------------------
* Create Cursor Statement
* ----------------------
*/
typedef
struct
CursorStmt
{
NodeTag
type
;
char
*
portalname
;
/* the portal (cursor) to create */
bool
binary
;
/* a binary (internal) portal? */
char
*
unique
;
/* NULL, "*", or unique attribute name */
List
*
targetList
;
/* the target list (of ResTarget) */
List
*
fromClause
;
/* the from clause */
Node
*
whereClause
;
/* qualifications */
List
*
groupClause
;
/* group by clause */
List
*
sortClause
;
/* sort clause (a list of SortGroupBy's) */
}
CursorStmt
;
/* ----------------------
* Select Statement
* ----------------------
...
...
@@ -637,6 +620,8 @@ typedef struct SelectStmt
Node
*
havingClause
;
/* having conditional-expression */
List
*
unionClause
;
/* union subselect parameters */
List
*
sortClause
;
/* sort clause (a list of SortGroupBy's) */
char
*
portalname
;
/* the portal (cursor) to create */
bool
binary
;
/* a binary (internal) portal? */
bool
unionall
;
/* union without unique sort */
}
SelectStmt
;
...
...
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