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
51689ece
Commit
51689ece
authored
Sep 29, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MOVE implementation (added bool ismove to FetchStmt).
parent
5a447b4a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
16 deletions
+3
-16
src/include/nodes/nodes.h
src/include/nodes/nodes.h
+1
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+2
-14
No files found.
src/include/nodes/nodes.h
View file @
51689ece
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.1
4 1997/09/08 21:52:47 momjian
Exp $
* $Id: nodes.h,v 1.1
5 1997/09/29 06:01:44 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -161,7 +161,6 @@ typedef enum NodeTag
T_ExtendStmt
,
T_FetchStmt
,
T_IndexStmt
,
T_MoveStmt
,
T_ProcedureStmt
,
T_PurgeStmt
,
T_RecipeStmt
,
...
...
src/include/nodes/parsenodes.h
View file @
51689ece
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.2
7 1997/09/08 21:52:49 momjian
Exp $
* $Id: parsenodes.h,v 1.2
8 1997/09/29 06:01:46 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -268,6 +268,7 @@ typedef struct FetchStmt
int
direction
;
/* FORWARD or BACKWARD */
int
howMany
;
/* amount to fetch ("ALL" --> 0) */
char
*
portalname
;
/* name of portal (cursor) */
bool
ismove
;
/* TRUE if MOVE */
}
FetchStmt
;
/* ----------------------
...
...
@@ -289,19 +290,6 @@ typedef struct IndexStmt
bool
unique
;
/* is index unique? */
}
IndexStmt
;
/* ----------------------
* Move Statement (Not implemented)
* ----------------------
*/
typedef
struct
MoveStmt
{
NodeTag
type
;
int
direction
;
/* FORWARD or BACKWARD */
bool
to
;
int
where
;
char
*
portalname
;
}
MoveStmt
;
/* ----------------------
* Create Function Statement
* ----------------------
...
...
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