Commit c5173fc5 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Rename "TYPE" parser keyword token from P_TYPE to TYPE_P to conform

to changes in parser.
parent d8e26064
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.25 1997/09/29 05:59:16 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.26 1997/10/25 05:34:07 thomas Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -369,7 +369,7 @@ ProcessUtility(Node *parsetree, ...@@ -369,7 +369,7 @@ ProcessUtility(Node *parsetree,
DefineOperator(stmt->defname, /* operator name */ DefineOperator(stmt->defname, /* operator name */
stmt->definition); /* rest */ stmt->definition); /* rest */
break; break;
case P_TYPE: case TYPE_P:
{ {
DefineType(stmt->defname, stmt->definition); DefineType(stmt->defname, stmt->definition);
} }
...@@ -490,7 +490,7 @@ ProcessUtility(Node *parsetree, ...@@ -490,7 +490,7 @@ ProcessUtility(Node *parsetree,
RemoveRewriteRule(rulename); RemoveRewriteRule(rulename);
} }
break; break;
case P_TYPE: case TYPE_P:
#ifndef NO_SECURITY #ifndef NO_SECURITY
/* XXX moved to remove.c */ /* XXX moved to remove.c */
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment