File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1010 *
1111 *
1212 * IDENTIFICATION
13- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.55 1997/10/09 05:35:30 thomas Exp $
13+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.56 1997/10/09 05:43:59 thomas Exp $
1414 *
1515 * HISTORY
1616 * AUTHOR DATE MAJOR EVENT
@@ -2362,7 +2362,7 @@ typname: txname
23622362txname: Id { $$ = $1; }
23632363 | DateTime { $$ = $1; }
23642364 | TIME { $$ = xlateSqlType("time"); }
2365- | TYPE_P { $$ = xlateSqlType("type"); }
2365+ | P_TYPE { $$ = xlateSqlType("type"); }
23662366 | INTERVAL interval_opts { $$ = xlateSqlType("interval"); }
23672367 | CHARACTER char_type { $$ = $2; }
23682368 | DOUBLE PRECISION { $$ = xlateSqlType("float8"); }
@@ -3142,7 +3142,7 @@ index_name: Id { $$ = $1; };
31423142name: Id { $$ = $1; }
31433143 | DateTime { $$ = $1; }
31443144 | TIME { $$ = xlateSqlType("time"); }
3145- | TYPE_P { $$ = xlateSqlType("type"); }
3145+ | P_TYPE { $$ = xlateSqlType("type"); }
31463146 ;
31473147
31483148date: Sconst { $$ = $1; };
@@ -3198,7 +3198,7 @@ Id: IDENT { $$ = $1; };
31983198ColId: Id { $$ = $1; }
31993199 | DateTime { $$ = $1; }
32003200 | TIME { $$ = "time"; }
3201- | TYPE_P { $$ = "type"; }
3201+ | P_TYPE { $$ = "type"; }
32023202 ;
32033203
32043204SpecialRuleRelation: CURRENT
You can’t perform that action at this time.
0 commit comments