Really remove Recipe.
This commit is contained in:
parent
6c51355612
commit
60bb92af33
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.57 1999/02/23 07:42:41 thomas Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.58 1999/03/07 03:34:10 momjian Exp $
|
||||||
*
|
*
|
||||||
* HISTORY
|
* HISTORY
|
||||||
* AUTHOR DATE MAJOR EVENT
|
* AUTHOR DATE MAJOR EVENT
|
||||||
@ -127,7 +127,7 @@ Oid param_type(int t); /* used in parse_expr.c */
|
|||||||
ExtendStmt, FetchStmt, GrantStmt, CreateTrigStmt, DropTrigStmt,
|
ExtendStmt, FetchStmt, GrantStmt, CreateTrigStmt, DropTrigStmt,
|
||||||
CreatePLangStmt, DropPLangStmt,
|
CreatePLangStmt, DropPLangStmt,
|
||||||
IndexStmt, ListenStmt, UnlistenStmt, LockStmt, OptimizableStmt,
|
IndexStmt, ListenStmt, UnlistenStmt, LockStmt, OptimizableStmt,
|
||||||
ProcedureStmt, RecipeStmt, RemoveAggrStmt, RemoveOperStmt,
|
ProcedureStmt, RemoveAggrStmt, RemoveOperStmt,
|
||||||
RemoveFuncStmt, RemoveStmt,
|
RemoveFuncStmt, RemoveStmt,
|
||||||
RenameStmt, RevokeStmt, RuleStmt, TransactionStmt, ViewStmt, LoadStmt,
|
RenameStmt, RevokeStmt, RuleStmt, TransactionStmt, ViewStmt, LoadStmt,
|
||||||
CreatedbStmt, DestroydbStmt, VacuumStmt, CursorStmt, SubSelect,
|
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,
|
%type <str> relation_name, copy_file_name, copy_delimiter, def_name,
|
||||||
database_name, access_method_clause, access_method, attr_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,
|
%type <str> opt_id, opt_portal_name,
|
||||||
all_Op, MathOp, opt_name, opt_unique,
|
all_Op, MathOp, opt_name, opt_unique,
|
||||||
@ -397,7 +397,6 @@ stmt : AddAttrStmt
|
|||||||
| UnlistenStmt
|
| UnlistenStmt
|
||||||
| LockStmt
|
| LockStmt
|
||||||
| ProcedureStmt
|
| ProcedureStmt
|
||||||
| RecipeStmt
|
|
||||||
| RemoveAggrStmt
|
| RemoveAggrStmt
|
||||||
| RemoveOperStmt
|
| RemoveOperStmt
|
||||||
| RemoveFuncStmt
|
| RemoveFuncStmt
|
||||||
@ -1850,7 +1849,6 @@ ExtendStmt: EXTEND INDEX index_name where_clause
|
|||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
*
|
*
|
||||||
* QUERY:
|
* QUERY:
|
||||||
@ -1858,6 +1856,7 @@ ExtendStmt: EXTEND INDEX index_name where_clause
|
|||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
|
/* NOT USED
|
||||||
RecipeStmt: EXECUTE RECIPE recipe_name
|
RecipeStmt: EXECUTE RECIPE recipe_name
|
||||||
{
|
{
|
||||||
RecipeStmt *n;
|
RecipeStmt *n;
|
||||||
@ -1869,7 +1868,7 @@ RecipeStmt: EXECUTE RECIPE recipe_name
|
|||||||
$$ = (Node *)n;
|
$$ = (Node *)n;
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
*/
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
*
|
*
|
||||||
@ -5024,7 +5023,7 @@ name: ColId { $$ = $1; };
|
|||||||
func_name: ColId { $$ = xlateSqlFunc($1); };
|
func_name: ColId { $$ = xlateSqlFunc($1); };
|
||||||
|
|
||||||
file_name: Sconst { $$ = $1; };
|
file_name: Sconst { $$ = $1; };
|
||||||
recipe_name: IDENT { $$ = $1; };
|
/* NOT USED recipe_name: IDENT { $$ = $1; };*/
|
||||||
|
|
||||||
/* Constants
|
/* Constants
|
||||||
* Include TRUE/FALSE for SQL3 support. - thomas 1997-10-24
|
* Include TRUE/FALSE for SQL3 support. - thomas 1997-10-24
|
||||||
@ -5162,7 +5161,6 @@ ColId: IDENT { $$ = $1; }
|
|||||||
| PRIVILEGES { $$ = "privileges"; }
|
| PRIVILEGES { $$ = "privileges"; }
|
||||||
| PROCEDURAL { $$ = "procedural"; }
|
| PROCEDURAL { $$ = "procedural"; }
|
||||||
| READ { $$ = "read"; }
|
| READ { $$ = "read"; }
|
||||||
| RECIPE { $$ = "recipe"; }
|
|
||||||
| RELATIVE { $$ = "relative"; }
|
| RELATIVE { $$ = "relative"; }
|
||||||
| RENAME { $$ = "rename"; }
|
| RENAME { $$ = "rename"; }
|
||||||
| RETURNS { $$ = "returns"; }
|
| RETURNS { $$ = "returns"; }
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.54 1999/02/13 23:17:05 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.55 1999/03/07 03:34:11 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -187,7 +187,6 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"procedure", PROCEDURE},
|
{"procedure", PROCEDURE},
|
||||||
{"public", PUBLIC},
|
{"public", PUBLIC},
|
||||||
{"read", READ},
|
{"read", READ},
|
||||||
{"recipe", RECIPE},
|
|
||||||
{"references", REFERENCES},
|
{"references", REFERENCES},
|
||||||
{"relative", RELATIVE},
|
{"relative", RELATIVE},
|
||||||
{"rename", RENAME},
|
{"rename", RENAME},
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: nodes.h,v 1.46 1999/02/27 21:40:39 tgl Exp $
|
* $Id: nodes.h,v 1.47 1999/03/07 03:34:11 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -163,7 +163,6 @@ typedef enum NodeTag
|
|||||||
T_FetchStmt,
|
T_FetchStmt,
|
||||||
T_IndexStmt,
|
T_IndexStmt,
|
||||||
T_ProcedureStmt,
|
T_ProcedureStmt,
|
||||||
T_RecipeStmt,
|
|
||||||
T_RemoveAggrStmt,
|
T_RemoveAggrStmt,
|
||||||
T_RemoveFuncStmt,
|
T_RemoveFuncStmt,
|
||||||
T_RemoveOperStmt,
|
T_RemoveOperStmt,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user