Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc927f80

Browse files
author
Thomas G. Lockhart
committed
Use P_TYPE rather than TYPE_P (which will be the name in the next release).
1 parent0f66d79 commitc927f80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/backend/parser/gram.y

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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
* AUTHORDATEMAJOR EVENT
@@ -2362,7 +2362,7 @@ typname: txname
23622362
txname: 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; };
31423142
name: Id{ $$ = $1; }
31433143
| DateTime{ $$ = $1; }
31443144
| TIME{ $$ = xlateSqlType("time"); }
3145-
|TYPE_P{ $$ = xlateSqlType("type"); }
3145+
|P_TYPE{ $$ = xlateSqlType("type"); }
31463146
;
31473147

31483148
date:Sconst{ $$ = $1; };
@@ -3198,7 +3198,7 @@ Id: IDENT{ $$ = $1; };
31983198
ColId:Id{ $$ = $1; }
31993199
| DateTime{ $$ = $1; }
32003200
| TIME{ $$ = "time"; }
3201-
|TYPE_P{ $$ = "type"; }
3201+
|P_TYPE{ $$ = "type"; }
32023202
;
32033203

32043204
SpecialRuleRelation: CURRENT

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp