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
60bb92af
Commit
60bb92af
authored
Mar 07, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Really remove Recipe.
parent
6c513556
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5168 additions
and
5217 deletions
+5168
-5217
src/backend/parser/gram.c
src/backend/parser/gram.c
+5160
-5205
src/backend/parser/gram.y
src/backend/parser/gram.y
+6
-8
src/backend/parser/keywords.c
src/backend/parser/keywords.c
+1
-2
src/include/nodes/nodes.h
src/include/nodes/nodes.h
+1
-2
No files found.
src/backend/parser/gram.c
View file @
60bb92af
This diff is collapsed.
Click to expand it.
src/backend/parser/gram.y
View file @
60bb92af
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.5
7 1999/02/23 07:42:41 thomas
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.5
8 1999/03/07 03:34:10 momjian
Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -127,7 +127,7 @@ Oid param_type(int t); /* used in parse_expr.c */
ExtendStmt, FetchStmt, GrantStmt, CreateTrigStmt, DropTrigStmt,
CreatePLangStmt, DropPLangStmt,
IndexStmt, ListenStmt, UnlistenStmt, LockStmt, OptimizableStmt,
ProcedureStmt,
RecipeStmt,
RemoveAggrStmt, RemoveOperStmt,
ProcedureStmt, RemoveAggrStmt, RemoveOperStmt,
RemoveFuncStmt, RemoveStmt,
RenameStmt, RevokeStmt, RuleStmt, TransactionStmt, ViewStmt, LoadStmt,
CreatedbStmt, DestroydbStmt, VacuumStmt, CursorStmt, SubSelect,
...
...
@@ -150,7 +150,7 @@ Oid param_type(int t); /* used in parse_expr.c */
%type <str> relation_name, copy_file_name, copy_delimiter, def_name,
database_name, access_method_clause, access_method, attr_name,
class, index_name, name, func_name, file_name,
recipe_name,
aggr_argtype
class, index_name, name, func_name, file_name, aggr_argtype
%type <str> opt_id, opt_portal_name,
all_Op, MathOp, opt_name, opt_unique,
...
...
@@ -397,7 +397,6 @@ stmt : AddAttrStmt
| UnlistenStmt
| LockStmt
| ProcedureStmt
| RecipeStmt
| RemoveAggrStmt
| RemoveOperStmt
| RemoveFuncStmt
...
...
@@ -1850,7 +1849,6 @@ ExtendStmt: EXTEND INDEX index_name where_clause
}
;
/*****************************************************************************
*
* QUERY:
...
...
@@ -1858,6 +1856,7 @@ ExtendStmt: EXTEND INDEX index_name where_clause
*
*****************************************************************************/
/* NOT USED
RecipeStmt: EXECUTE RECIPE recipe_name
{
RecipeStmt *n;
...
...
@@ -1869,7 +1868,7 @@ RecipeStmt: EXECUTE RECIPE recipe_name
$$ = (Node *)n;
}
;
*/
/*****************************************************************************
*
...
...
@@ -5024,7 +5023,7 @@ name: ColId { $$ = $1; };
func_name: ColId { $$ = xlateSqlFunc($1); };
file_name: Sconst { $$ = $1; };
recipe_name: IDENT { $$ = $1; };
/* NOT USED recipe_name: IDENT { $$ = $1; };*/
/* Constants
* Include TRUE/FALSE for SQL3 support. - thomas 1997-10-24
...
...
@@ -5162,7 +5161,6 @@ ColId: IDENT { $$ = $1; }
| PRIVILEGES { $$ = "privileges"; }
| PROCEDURAL { $$ = "procedural"; }
| READ { $$ = "read"; }
| RECIPE { $$ = "recipe"; }
| RELATIVE { $$ = "relative"; }
| RENAME { $$ = "rename"; }
| RETURNS { $$ = "returns"; }
...
...
src/backend/parser/keywords.c
View file @
60bb92af
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.5
4 1999/02/13 23:17:05
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.5
5 1999/03/07 03:34:11
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -187,7 +187,6 @@ static ScanKeyword ScanKeywords[] = {
{
"procedure"
,
PROCEDURE
},
{
"public"
,
PUBLIC
},
{
"read"
,
READ
},
{
"recipe"
,
RECIPE
},
{
"references"
,
REFERENCES
},
{
"relative"
,
RELATIVE
},
{
"rename"
,
RENAME
},
...
...
src/include/nodes/nodes.h
View file @
60bb92af
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.4
6 1999/02/27 21:40:39 tgl
Exp $
* $Id: nodes.h,v 1.4
7 1999/03/07 03:34:11 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -163,7 +163,6 @@ typedef enum NodeTag
T_FetchStmt
,
T_IndexStmt
,
T_ProcedureStmt
,
T_RecipeStmt
,
T_RemoveAggrStmt
,
T_RemoveFuncStmt
,
T_RemoveOperStmt
,
...
...
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